[quake3-commits] r1922 - trunk/code/qcommon
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Thu Mar 10 17:06:56 EST 2011
Author: tma
Date: 2011-03-10 17:06:55 -0500 (Thu, 10 Mar 2011)
New Revision: 1922
Modified:
trunk/code/qcommon/q_shared.c
Log:
* Fix misplaced ; in MSVC _vsnprintf wrapper
Modified: trunk/code/qcommon/q_shared.c
===================================================================
--- trunk/code/qcommon/q_shared.c 2011-03-10 01:01:27 UTC (rev 1921)
+++ trunk/code/qcommon/q_shared.c 2011-03-10 22:06:55 UTC (rev 1922)
@@ -736,7 +736,7 @@
=============
*/
-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;
More information about the quake3-commits
mailing list