diff options
author | icculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2009-09-15 05:34:16 +0000 |
---|---|---|
committer | icculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2009-09-15 05:34:16 +0000 |
commit | 4d2bb35e55e29ef01e7a8f86a4f817e6ec0735aa (patch) | |
tree | 4523018e88dd6abac52bef861da88c0c614dbfb1 | |
parent | 3d4f5ccc6b175561b80db9404d13c09b7719fe8b (diff) | |
download | ioquake3-aero-4d2bb35e55e29ef01e7a8f86a4f817e6ec0735aa.tar.gz ioquake3-aero-4d2bb35e55e29ef01e7a8f86a4f817e6ec0735aa.zip |
Fixed a compiler warning on Apple's GCC.
git-svn-id: svn://svn.icculus.org/quake3/trunk@1615 edf5b092-35ff-0310-97b2-ce42778d08ea
-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) { |