Fixed a compiler warning on Apple's GCC.

This commit is contained in:
Ryan C. Gordon 2009-09-15 05:34:16 +00:00
parent 33beb9df27
commit d03120f0b0
1 changed files with 1 additions and 1 deletions

View File

@ -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) {