diff options
Diffstat (limited to 'src/game/bg_voice.c')
-rw-r--r-- | src/game/bg_voice.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/bg_voice.c b/src/game/bg_voice.c index 828219aa..44cfd17f 100644 --- a/src/game/bg_voice.c +++ b/src/game/bg_voice.c @@ -378,7 +378,7 @@ static voiceCmd_t *BG_VoiceParse( char *name ) trap_Parse_SourceFileAndLine( handle, filename, &line ); Com_Error( ERR_FATAL, "BG_VoiceParse(): " - "parse error on line %d of %s\n", line, filename ); + "parse error on line %d of %s", line, filename ); } } @@ -389,7 +389,7 @@ static voiceCmd_t *BG_VoiceParse( char *name ) trap_Parse_SourceFileAndLine( handle, filename, &line ); Com_Error( ERR_FATAL, "BG_VoiceParse(): " - "command \"%s\" exceeds MAX_VOICE_CMD_LEN (%d) on line %d of %s\n", + "command \"%s\" exceeds MAX_VOICE_CMD_LEN (%d) on line %d of %s", token.string, MAX_VOICE_CMD_LEN, line, filename ); } |