From 4d2bb35e55e29ef01e7a8f86a4f817e6ec0735aa Mon Sep 17 00:00:00 2001 From: icculus Date: Tue, 15 Sep 2009 05:34:16 +0000 Subject: Fixed a compiler warning on Apple's GCC. git-svn-id: svn://svn.icculus.org/quake3/trunk@1615 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/tools/asm/cmdlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'code') diff --git a/code/tools/asm/cmdlib.c b/code/tools/asm/cmdlib.c index de2610d..9b579f2 100644 --- a/code/tools/asm/cmdlib.c +++ b/code/tools/asm/cmdlib.c @@ -185,7 +185,7 @@ void _printf( const char *format, ... ) { vsprintf (text, format, argptr); va_end (argptr); - printf(text); + printf("%s", text); #ifdef WIN32 if (!lookedForServer) { -- cgit v1.2.3