stdio.c: fix compiler warning

This commit is contained in:
Harald Welte
2017-02-27 23:05:15 +01:00
parent 045ea3eb7b
commit 96e62a4664

View File

@@ -294,7 +294,7 @@ signed int vsnprintf(char *pStr, size_t length, const char *pFormat, va_list ap)
char fill;
unsigned char width;
signed int num = 0;
signed int size = 0;
size_t size = 0;
// Clear the string
if (pStr) {