diff options
author | M. Kristall <mkpdev@gmail.com> | 2009-10-03 11:48:20 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:15:22 +0000 |
commit | 9a86ff8f85ba4103eea17d6db5def12eeedc1a00 (patch) | |
tree | f5a8141d5ead39f873a38a99279c1e96e343680d /src/game/g_main.c | |
parent | 1161e866f7a074c7c89a0447ee3712e6944513a3 (diff) |
* (bug 3673) Add boundary checking to G_SanitiseName() and G_DecolorString()
* s/G_SanitiseName/G_SanitiseString/
* s/trap_Printf/trap_Print/
* Change a few occurences of MAX_STRING_CHARS to MAX_NAME_LENGTH
Diffstat (limited to 'src/game/g_main.c')
-rw-r--r-- | src/game/g_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_main.c b/src/game/g_main.c index bb79e173..a4af138a 100644 --- a/src/game/g_main.c +++ b/src/game/g_main.c @@ -341,7 +341,7 @@ void QDECL G_Printf( const char *fmt, ... ) vsprintf( text, fmt, argptr ); va_end( argptr ); - trap_Printf( text ); + trap_Print( text ); } void QDECL G_Error( const char *fmt, ... ) |