Reacted on warnings of -Wtype-limits
This commit is contained in:
parent
9b77004fbc
commit
73f0442b0d
@ -544,11 +544,13 @@ ex:;
|
|||||||
*/
|
*/
|
||||||
int Sfile_bsl_encoder(char **result, char *text, size_t text_len, int flag)
|
int Sfile_bsl_encoder(char **result, char *text, size_t text_len, int flag)
|
||||||
{
|
{
|
||||||
char *rpt, *wpt;
|
signed char *rpt;
|
||||||
|
char *wpt;
|
||||||
int count, sq_open= 0, dq_open= 0;
|
int count, sq_open= 0, dq_open= 0;
|
||||||
|
|
||||||
count= 0;
|
count= 0;
|
||||||
for(rpt= text; (size_t) (rpt - text) < text_len; rpt++) {
|
for(rpt= (signed char *) text; (size_t) (((char *) rpt) - text) < text_len;
|
||||||
|
rpt++) {
|
||||||
count++;
|
count++;
|
||||||
if(flag & 8) {
|
if(flag & 8) {
|
||||||
if(!(*rpt <= 42 || (*rpt >= 59 && *rpt <= 63) ||
|
if(!(*rpt <= 42 || (*rpt >= 59 && *rpt <= 63) ||
|
||||||
@ -564,7 +566,8 @@ int Sfile_bsl_encoder(char **result, char *text, size_t text_len, int flag)
|
|||||||
(*result)= wpt= calloc(count + 1, 1);
|
(*result)= wpt= calloc(count + 1, 1);
|
||||||
if(wpt == NULL)
|
if(wpt == NULL)
|
||||||
return(-1);
|
return(-1);
|
||||||
for(rpt= text; (size_t) (rpt - text) < text_len; rpt++) {
|
for(rpt= (signed char *) text; (size_t) (((char *) rpt) - text) < text_len;
|
||||||
|
rpt++) {
|
||||||
if(*rpt == '\'')
|
if(*rpt == '\'')
|
||||||
sq_open= !(sq_open || dq_open);
|
sq_open= !(sq_open || dq_open);
|
||||||
if(*rpt == '"')
|
if(*rpt == '"')
|
||||||
|
@ -1 +1 @@
|
|||||||
#define Xorriso_timestamP "2011.07.03.092353"
|
#define Xorriso_timestamP "2011.07.03.093500"
|
||||||
|
Loading…
Reference in New Issue
Block a user