mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Fixed a compiler warning on Apple's GCC.
This commit is contained in:
parent
33beb9df27
commit
d03120f0b0
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue