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

Fix missed temporary variable 'i' from last commit.

parent 3e3d3a09
No related branches found
No related tags found
No related merge requests found
...@@ -292,7 +292,7 @@ char* DLLCALL xp_asprintf_next(char *format, int type, ...) ...@@ -292,7 +292,7 @@ char* DLLCALL xp_asprintf_next(char *format, int type, ...)
va_list vars; va_list vars;
char *p; char *p;
char *newbuf; char *newbuf;
int i,j; int i=0,j;
unsigned int ui=0; unsigned int ui=0;
long int l=0; long int l=0;
unsigned long int ul=0; unsigned long int ul=0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment