* Fix misplaced ; in MSVC _vsnprintf wrapper

This commit is contained in:
Tim Angus 2011-03-10 22:06:55 +00:00
parent 3bf8ec2dab
commit a9830934ba
1 changed files with 1 additions and 1 deletions

View File

@ -736,7 +736,7 @@ MinGW comes with its own snprintf() which is not broken.
=============
*/
int Q_vsnprintf(char *str, size_t size, const char *format, va_list ap);
int Q_vsnprintf(char *str, size_t size, const char *format, va_list ap)
{
int retval;