diff options
-rw-r--r-- | com32/lib/vsprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/lib/vsprintf.c b/com32/lib/vsprintf.c index 4a6100e7..8df62130 100644 --- a/com32/lib/vsprintf.c +++ b/com32/lib/vsprintf.c @@ -7,5 +7,5 @@ int vsprintf(char *buffer, const char *format, va_list ap) { - return vsnprintf(buffer, ~(size_t)0, format, ap); + return vsnprintf(buffer, ~(size_t) 0, format, ap); } |