diff options
-rw-r--r-- | code/tools/asm/cmdlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |