[quake3-commits] r1615 - trunk/code/tools/asm

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Tue Sep 15 01:34:16 EDT 2009


Author: icculus
Date: 2009-09-15 01:34:16 -0400 (Tue, 15 Sep 2009)
New Revision: 1615

Modified:
   trunk/code/tools/asm/cmdlib.c
Log:
Fixed a compiler warning on Apple's GCC.


Modified: trunk/code/tools/asm/cmdlib.c
===================================================================
--- trunk/code/tools/asm/cmdlib.c	2009-09-15 05:30:08 UTC (rev 1614)
+++ trunk/code/tools/asm/cmdlib.c	2009-09-15 05:34:16 UTC (rev 1615)
@@ -185,7 +185,7 @@
 	vsprintf (text, format, argptr);
 	va_end (argptr);
 
-  printf(text);
+  printf("%s", text);
 
 #ifdef WIN32
   if (!lookedForServer) {



More information about the quake3-commits mailing list