aboutsummaryrefslogtreecommitdiffstats
path: root/code
diff options
context:
space:
mode:
authoricculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea>2009-09-15 05:34:16 +0000
committericculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea>2009-09-15 05:34:16 +0000
commit4d2bb35e55e29ef01e7a8f86a4f817e6ec0735aa (patch)
tree4523018e88dd6abac52bef861da88c0c614dbfb1 /code
parent3d4f5ccc6b175561b80db9404d13c09b7719fe8b (diff)
downloadioquake3-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
Diffstat (limited to 'code')
-rw-r--r--code/tools/asm/cmdlib.c2
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) {