mirror of
https://github.com/UberGames/ioef.git
synced 2024-11-28 06:52:35 +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);
|
vsprintf (text, format, argptr);
|
||||||
va_end (argptr);
|
va_end (argptr);
|
||||||
|
|
||||||
printf(text);
|
printf("%s", text);
|
||||||
|
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
if (!lookedForServer) {
|
if (!lookedForServer) {
|
||||||
|
|
Loading…
Reference in a new issue