diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/string.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string.cpp b/src/string.cpp index a70b484bd..16e1e7099 100644 --- a/src/string.cpp +++ b/src/string.cpp @@ -253,7 +253,7 @@ int CDECL vsnprintf(char *str, size_t size, const char *format, va_list ap) /* The buffer is too small for _vsnprintf to write the * null-terminator at its end and return size. */ str[size - 1] = '\0'; - return size; + return (int)size; } #endif /* _MSC_VER */ |