From a9830934babf6752253d8faf67484b957f071609 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Thu, 10 Mar 2011 22:06:55 +0000 Subject: [PATCH] * Fix misplaced ; in MSVC _vsnprintf wrapper --- code/qcommon/q_shared.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/qcommon/q_shared.c b/code/qcommon/q_shared.c index 68190c4d..ef652ff1 100644 --- a/code/qcommon/q_shared.c +++ b/code/qcommon/q_shared.c @@ -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;