Skip to content
Snippets Groups Projects
Commit a93736f6 authored by deuce's avatar deuce
Browse files

Fix warnings. We no longer need to track width and precision since we have

asprintf() now.
parent 3cd17446
No related branches found
No related tags found
No related merge requests found
......@@ -340,8 +340,6 @@ char* DLLCALL xp_asprintf_next(char *format, int type, ...)
int modifier=0;
int correct_type=0;
char num_str[128]; /* More than enough room for a 256-bit int */
size_t width=0;
size_t precision=0;
/*
* Check if we're already done...
......@@ -420,8 +418,6 @@ char* DLLCALL xp_asprintf_next(char *format, int type, ...)
return(format);
}
/* Skip width */
if(*p >= '0' && *p <= '9')
width=strtoul(p, NULL, 10);
while(*p >= '0' && *p <= '9')
*(fmt++)=*(p++);
/* Check for precision */
......@@ -461,8 +457,6 @@ char* DLLCALL xp_asprintf_next(char *format, int type, ...)
return(format);
}
/* Skip precision */
if(*p >= '0' && *p <= '9')
precision=strtoul(p, NULL, 10);
while(*p >= '0' && *p <= '9')
*(fmt++)=*(p++);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment