From d03120f0b00eb58c1343e6997ad7f7412bd3976a Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 15 Sep 2009 05:34:16 +0000 Subject: [PATCH] Fixed a compiler warning on Apple's GCC. --- code/tools/asm/cmdlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/tools/asm/cmdlib.c b/code/tools/asm/cmdlib.c index de2610d4..9b579f2b 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) {