Skip to content

Commit

Permalink
Fixed a compiler warning on Apple's GCC.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Sep 15, 2009
1 parent 33beb9d commit d03120f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/tools/asm/cmdlib.c
Expand Up @@ -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) {
Expand Down

0 comments on commit d03120f

Please sign in to comment.