diff --git a/code/botlib/l_precomp.c b/code/botlib/l_precomp.c index 4257594e..f560f2bb 100644 --- a/code/botlib/l_precomp.c +++ b/code/botlib/l_precomp.c @@ -271,7 +271,7 @@ token_t *PC_CopyToken(token_t *token) #ifdef BSPC Error("out of token space\n"); #else - Com_Error(ERR_FATAL, "out of token space\n"); + Com_Error(ERR_FATAL, "out of token space"); #endif return NULL; } //end if diff --git a/code/client/cl_avi.c b/code/client/cl_avi.c index dd7bd9bc..3b0d7751 100644 --- a/code/client/cl_avi.c +++ b/code/client/cl_avi.c @@ -82,7 +82,7 @@ SafeFS_Write static ID_INLINE void SafeFS_Write( const void *buffer, int len, fileHandle_t f ) { if( FS_Write( buffer, len, f ) < len ) - Com_Error( ERR_DROP, "Failed to write avi file\n" ); + Com_Error( ERR_DROP, "Failed to write avi file" ); } /* @@ -142,7 +142,7 @@ static ID_INLINE void START_CHUNK( const char *s ) { if( afd.chunkStackTop == MAX_RIFF_CHUNKS ) { - Com_Error( ERR_DROP, "ERROR: Top of chunkstack breached\n" ); + Com_Error( ERR_DROP, "ERROR: Top of chunkstack breached" ); } afd.chunkStack[ afd.chunkStackTop ] = bufIndex; @@ -162,7 +162,7 @@ static ID_INLINE void END_CHUNK( void ) if( afd.chunkStackTop <= 0 ) { - Com_Error( ERR_DROP, "ERROR: Bottom of chunkstack breached\n" ); + Com_Error( ERR_DROP, "ERROR: Bottom of chunkstack breached" ); } afd.chunkStackTop--; diff --git a/code/client/cl_cgame.c b/code/client/cl_cgame.c index 2a00eb27..e87ce7a2 100644 --- a/code/client/cl_cgame.c +++ b/code/client/cl_cgame.c @@ -300,7 +300,7 @@ rescan: if ( argc >= 2 ) Com_Error( ERR_SERVERDISCONNECT, "Server disconnected - %s", Cmd_Argv( 1 ) ); else - Com_Error( ERR_SERVERDISCONNECT, "Server disconnected\n" ); + Com_Error( ERR_SERVERDISCONNECT, "Server disconnected" ); } if ( !strcmp( cmd, "bcs0" ) ) { diff --git a/code/client/cl_parse.c b/code/client/cl_parse.c index 646fa818..1796afbe 100644 --- a/code/client/cl_parse.c +++ b/code/client/cl_parse.c @@ -265,7 +265,7 @@ void CL_ParseSnapshot( msg_t *msg ) { if(len > sizeof(newSnap.areamask)) { - Com_Error (ERR_DROP,"CL_ParseSnapshot: Invalid size %d for areamask.", len); + Com_Error (ERR_DROP,"CL_ParseSnapshot: Invalid size %d for areamask", len); return; } @@ -580,7 +580,7 @@ void CL_ParseDownload ( msg_t *msg ) { size = MSG_ReadShort ( msg ); if (size < 0 || size > sizeof(data)) { - Com_Error(ERR_DROP, "CL_ParseDownload: Invalid size %d for download chunk.", size); + Com_Error(ERR_DROP, "CL_ParseDownload: Invalid size %d for download chunk", size); return; } @@ -885,7 +885,7 @@ void CL_ParseServerMessage( msg_t *msg ) { // other commands switch ( cmd ) { default: - Com_Error (ERR_DROP,"CL_ParseServerMessage: Illegible server message\n"); + Com_Error (ERR_DROP,"CL_ParseServerMessage: Illegible server message"); break; case svc_nop: break; diff --git a/code/client/snd_dma.c b/code/client/snd_dma.c index 428d1d4d..c6bf492b 100644 --- a/code/client/snd_dma.c +++ b/code/client/snd_dma.c @@ -259,10 +259,10 @@ static sfx_t *S_FindName( const char *name ) { sfx_t *sfx; if (!name) { - Com_Error (ERR_FATAL, "S_FindName: NULL\n"); + Com_Error (ERR_FATAL, "S_FindName: NULL"); } if (!name[0]) { - Com_Error (ERR_FATAL, "S_FindName: empty name\n"); + Com_Error (ERR_FATAL, "S_FindName: empty name"); } if (strlen(name) >= MAX_QPATH) { diff --git a/code/client/snd_main.c b/code/client/snd_main.c index 0901d455..441f8c3c 100644 --- a/code/client/snd_main.c +++ b/code/client/snd_main.c @@ -509,7 +509,7 @@ void S_Init( void ) if( started ) { if( !S_ValidSoundInterface( &si ) ) { - Com_Error( ERR_FATAL, "Sound interface invalid." ); + Com_Error( ERR_FATAL, "Sound interface invalid" ); } S_SoundInfo( ); diff --git a/code/client/snd_openal.c b/code/client/snd_openal.c index af537f42..49864a1e 100644 --- a/code/client/snd_openal.c +++ b/code/client/snd_openal.c @@ -227,7 +227,7 @@ S_AL_BufferUseDefault static void S_AL_BufferUseDefault(sfxHandle_t sfx) { if(sfx == default_sfx) - Com_Error(ERR_FATAL, "Can't load default sound effect %s\n", knownSfx[sfx].filename); + Com_Error(ERR_FATAL, "Can't load default sound effect %s", knownSfx[sfx].filename); Com_Printf( S_COLOR_YELLOW "WARNING: Using default sound for %s\n", knownSfx[sfx].filename); knownSfx[sfx].isDefault = qtrue; diff --git a/code/qcommon/common.c b/code/qcommon/common.c index 498614fc..db5b6398 100644 --- a/code/qcommon/common.c +++ b/code/qcommon/common.c @@ -1054,12 +1054,12 @@ void Z_CheckHeap( void ) { break; // all blocks have been hit } if ( (byte *)block + block->size != (byte *)block->next) - Com_Error( ERR_FATAL, "Z_CheckHeap: block size does not touch the next block\n" ); + Com_Error( ERR_FATAL, "Z_CheckHeap: block size does not touch the next block" ); if ( block->next->prev != block) { - Com_Error( ERR_FATAL, "Z_CheckHeap: next block doesn't have proper back link\n" ); + Com_Error( ERR_FATAL, "Z_CheckHeap: next block doesn't have proper back link" ); } if ( !block->tag && !block->next->tag ) { - Com_Error( ERR_FATAL, "Z_CheckHeap: two consecutive free blocks\n" ); + Com_Error( ERR_FATAL, "Z_CheckHeap: two consecutive free blocks" ); } } } @@ -1870,7 +1870,7 @@ void Hunk_Trash( void ) { return; #ifdef _DEBUG - Com_Error(ERR_DROP, "hunk trashed\n"); + Com_Error(ERR_DROP, "hunk trashed"); return; #endif diff --git a/code/qcommon/files.c b/code/qcommon/files.c index f6d8e3df..9988e539 100644 --- a/code/qcommon/files.c +++ b/code/qcommon/files.c @@ -517,7 +517,7 @@ qboolean FS_CreatePath (char *OSPath) { // create the directory *ofs = 0; if (!Sys_Mkdir (path)) { - Com_Error( ERR_FATAL, "FS_CreatePath: failed to create path \"%s\"\n", + Com_Error( ERR_FATAL, "FS_CreatePath: failed to create path \"%s\"", path ); } *ofs = PATH_SEP; @@ -630,7 +630,7 @@ fileHandle_t FS_SV_FOpenFileWrite( const char *filename ) { fileHandle_t f; if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } ospath = FS_BuildOSPath( fs_homepath->string, filename, "" ); @@ -674,7 +674,7 @@ int FS_SV_FOpenFileRead( const char *filename, fileHandle_t *fp ) { fileHandle_t f = 0; if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } f = FS_HandleForFile(); @@ -739,7 +739,7 @@ void FS_SV_Rename( const char *from, const char *to ) { char *from_ospath, *to_ospath; if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } // don't let sound stutter @@ -771,7 +771,7 @@ void FS_Rename( const char *from, const char *to ) { char *from_ospath, *to_ospath; if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } // don't let sound stutter @@ -801,7 +801,7 @@ on files returned by FS_FOpenFile... */ void FS_FCloseFile( fileHandle_t f ) { if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } if (fsh[f].zipFile == qtrue) { @@ -831,7 +831,7 @@ fileHandle_t FS_FOpenFileWrite( const char *filename ) { fileHandle_t f; if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } f = FS_HandleForFile(); @@ -874,7 +874,7 @@ fileHandle_t FS_FOpenFileAppend( const char *filename ) { fileHandle_t f; if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } f = FS_HandleForFile(); @@ -917,7 +917,7 @@ fileHandle_t FS_FCreateOpenPipeFile( const char *filename ) { fileHandle_t f; if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } f = FS_HandleForFile(); @@ -1065,7 +1065,7 @@ int FS_FOpenFileRead( const char *filename, fileHandle_t *file, qboolean uniqueF hash = 0; if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } if ( file == NULL ) { @@ -1104,7 +1104,7 @@ int FS_FOpenFileRead( const char *filename, fileHandle_t *file, qboolean uniqueF } if ( !filename ) { - Com_Error( ERR_FATAL, "FS_FOpenFileRead: NULL 'filename' parameter passed\n" ); + Com_Error( ERR_FATAL, "FS_FOpenFileRead: NULL 'filename' parameter passed" ); } // qpaths are not supposed to have a leading slash @@ -1267,7 +1267,7 @@ char *FS_FindDll( const char *filename ) { directory_t *dir; if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } for ( search = fs_searchpaths ; search ; search = search->next ) { @@ -1297,7 +1297,7 @@ Properly handles partial reads */ int FS_Read2( void *buffer, int len, fileHandle_t f ) { if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } if ( !f ) { @@ -1321,7 +1321,7 @@ int FS_Read( void *buffer, int len, fileHandle_t f ) { int tries; if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } if ( !f ) { @@ -1375,7 +1375,7 @@ int FS_Write( const void *buffer, int len, fileHandle_t h ) { FILE *f; if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } if ( !h ) { @@ -1436,7 +1436,7 @@ int FS_Seek( fileHandle_t f, long offset, int origin ) { int _origin; if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); return -1; } @@ -1474,7 +1474,7 @@ int FS_Seek( fileHandle_t f, long offset, int origin ) { break; default: - Com_Error( ERR_FATAL, "Bad origin in FS_Seek\n" ); + Com_Error( ERR_FATAL, "Bad origin in FS_Seek" ); return -1; break; } @@ -1493,7 +1493,7 @@ int FS_Seek( fileHandle_t f, long offset, int origin ) { break; default: _origin = SEEK_CUR; - Com_Error( ERR_FATAL, "Bad origin in FS_Seek\n" ); + Com_Error( ERR_FATAL, "Bad origin in FS_Seek" ); break; } @@ -1517,11 +1517,11 @@ int FS_FileIsInPAK(const char *filename, int *pChecksum ) { long hash = 0; if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } if ( !filename ) { - Com_Error( ERR_FATAL, "FS_FOpenFileRead: NULL 'filename' parameter passed\n" ); + Com_Error( ERR_FATAL, "FS_FOpenFileRead: NULL 'filename' parameter passed" ); } // qpaths are not supposed to have a leading slash @@ -1585,11 +1585,11 @@ int FS_ReadFile( const char *qpath, void **buffer ) { int len; if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } if ( !qpath || !qpath[0] ) { - Com_Error( ERR_FATAL, "FS_ReadFile with empty name\n" ); + Com_Error( ERR_FATAL, "FS_ReadFile with empty name" ); } buf = NULL; // quiet compiler warning @@ -1694,7 +1694,7 @@ FS_FreeFile */ void FS_FreeFile( void *buffer ) { if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } if ( !buffer ) { Com_Error( ERR_FATAL, "FS_FreeFile( NULL )" ); @@ -1720,7 +1720,7 @@ void FS_WriteFile( const char *qpath, const void *buffer, int size ) { fileHandle_t f; if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } if ( !qpath || !buffer ) { @@ -1977,7 +1977,7 @@ char **FS_ListFilteredFiles( const char *path, const char *extension, char *filt char zpath[MAX_ZPATH]; if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } if ( !path ) { @@ -2108,7 +2108,7 @@ void FS_FreeFileList( char **list ) { int i; if ( !fs_searchpaths ) { - Com_Error( ERR_FATAL, "Filesystem call made without initialization\n" ); + Com_Error( ERR_FATAL, "Filesystem call made without initialization" ); } if ( !list ) { @@ -3660,7 +3660,7 @@ void FS_Restart( int checksumFeed ) { lastValidBase[0] = '\0'; lastValidGame[0] = '\0'; FS_Restart(checksumFeed); - Com_Error( ERR_DROP, "Invalid game folder\n" ); + Com_Error( ERR_DROP, "Invalid game folder" ); return; } Com_Error( ERR_FATAL, "Couldn't load default.cfg" ); diff --git a/code/qcommon/huffman.c b/code/qcommon/huffman.c index 2ff4ae50..8a5fa507 100644 --- a/code/qcommon/huffman.c +++ b/code/qcommon/huffman.c @@ -273,7 +273,7 @@ int Huff_Receive (node_t *node, int *ch, byte *fin) { } if (!node) { return 0; -// Com_Error(ERR_DROP, "Illegal tree!\n"); +// Com_Error(ERR_DROP, "Illegal tree!"); } return (*ch = node->symbol); } @@ -291,7 +291,7 @@ void Huff_offsetReceive (node_t *node, int *ch, byte *fin, int *offset) { if (!node) { *ch = 0; return; -// Com_Error(ERR_DROP, "Illegal tree!\n"); +// Com_Error(ERR_DROP, "Illegal tree!"); } *ch = node->symbol; *offset = bloc; diff --git a/code/qcommon/msg.c b/code/qcommon/msg.c index cf60aec1..9916b1b3 100644 --- a/code/qcommon/msg.c +++ b/code/qcommon/msg.c @@ -155,7 +155,7 @@ void MSG_WriteBits( msg_t *msg, int value, int bits ) { msg->cursize += 4; msg->bit += 32; } else { - Com_Error(ERR_DROP, "can't read %d bits\n", bits); + Com_Error(ERR_DROP, "can't read %d bits", bits); } } else { // fp = fopen("c:\\netchan.bin", "a"); @@ -213,7 +213,7 @@ int MSG_ReadBits( msg_t *msg, int bits ) { msg->readcount += 4; msg->bit += 32; } else { - Com_Error(ERR_DROP, "can't read %d bits\n", bits); + Com_Error(ERR_DROP, "can't read %d bits", bits); } } else { nbits = 0; diff --git a/code/qcommon/vm.c b/code/qcommon/vm.c index d3fb85bc..e4639ca1 100644 --- a/code/qcommon/vm.c +++ b/code/qcommon/vm.c @@ -502,7 +502,7 @@ vm_t *VM_Restart( vm_t *vm ) { Com_Printf( "VM_Restart()\n" ); if( !( header = VM_LoadQVM( vm, qfalse ) ) ) { - Com_Error( ERR_DROP, "VM_Restart failed.\n" ); + Com_Error( ERR_DROP, "VM_Restart failed" ); return NULL; } diff --git a/code/qcommon/vm_powerpc.c b/code/qcommon/vm_powerpc.c index c18e679b..fbe309e7 100644 --- a/code/qcommon/vm_powerpc.c +++ b/code/qcommon/vm_powerpc.c @@ -1,4 +1,4 @@ -/* +50/* =========================================================================== Copyright (C) 2008 Przemyslaw Iskra @@ -47,7 +47,7 @@ static clock_t time_total_vm = 0; /* exit() won't be called but use it because it is marked with noreturn */ #define DIE( reason ) \ do { \ - Com_Error(ERR_DROP, "vm_powerpc compiler error: " reason "\n"); \ + Com_Error(ERR_DROP, "vm_powerpc compiler error: " reason); \ exit(1); \ } while(0) diff --git a/code/qcommon/vm_sparc.c b/code/qcommon/vm_sparc.c index 4018216b..d13b9e68 100644 --- a/code/qcommon/vm_sparc.c +++ b/code/qcommon/vm_sparc.c @@ -36,7 +36,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA /* exit() won't be called but use it because it is marked with noreturn */ #define DIE( reason ) \ do { \ - Com_Error(ERR_DROP, "vm_sparc compiler error: " reason "\n"); \ + Com_Error(ERR_DROP, "vm_sparc compiler error: " reason); \ exit(1); \ } while(0) diff --git a/code/sdl/sdl_input.c b/code/sdl/sdl_input.c index 394b962f..26b78fa8 100644 --- a/code/sdl/sdl_input.c +++ b/code/sdl/sdl_input.c @@ -1026,7 +1026,7 @@ void IN_Init( void ) if( !SDL_WasInit( SDL_INIT_VIDEO ) ) { - Com_Error( ERR_FATAL, "IN_Init called before SDL_Init( SDL_INIT_VIDEO )\n" ); + Com_Error( ERR_FATAL, "IN_Init called before SDL_Init( SDL_INIT_VIDEO )" ); return; } diff --git a/code/server/sv_bot.c b/code/server/sv_bot.c index 8583f866..704387d3 100644 --- a/code/server/sv_bot.c +++ b/code/server/sv_bot.c @@ -304,7 +304,7 @@ BotImport_HunkAlloc */ static void *BotImport_HunkAlloc( int size ) { if( Hunk_CheckMark() ) { - Com_Error( ERR_DROP, "SV_Bot_HunkAlloc: Alloc with marks already set\n" ); + Com_Error( ERR_DROP, "SV_Bot_HunkAlloc: Alloc with marks already set" ); } return Hunk_Alloc( size, h_high ); } diff --git a/code/server/sv_client.c b/code/server/sv_client.c index 89f53b33..9f5a9a8d 100644 --- a/code/server/sv_client.c +++ b/code/server/sv_client.c @@ -459,7 +459,7 @@ void SV_DirectConnect( netadr_t from ) { newcl = &svs.clients[sv_maxclients->integer - 1]; } else { - Com_Error( ERR_FATAL, "server is full on local connect\n" ); + Com_Error( ERR_FATAL, "server is full on local connect" ); return; } } diff --git a/code/server/sv_init.c b/code/server/sv_init.c index 5bf1302c..32905015 100644 --- a/code/server/sv_init.c +++ b/code/server/sv_init.c @@ -108,7 +108,7 @@ void SV_SetConfigstring (int index, const char *val) { client_t *client; if ( index < 0 || index >= MAX_CONFIGSTRINGS ) { - Com_Error (ERR_DROP, "SV_SetConfigstring: bad index %i\n", index); + Com_Error (ERR_DROP, "SV_SetConfigstring: bad index %i", index); } if ( !val ) { @@ -156,7 +156,7 @@ void SV_GetConfigstring( int index, char *buffer, int bufferSize ) { Com_Error( ERR_DROP, "SV_GetConfigstring: bufferSize == %i", bufferSize ); } if ( index < 0 || index >= MAX_CONFIGSTRINGS ) { - Com_Error (ERR_DROP, "SV_GetConfigstring: bad index %i\n", index); + Com_Error (ERR_DROP, "SV_GetConfigstring: bad index %i", index); } if ( !sv.configstrings[index] ) { buffer[0] = 0; @@ -175,7 +175,7 @@ SV_SetUserinfo */ void SV_SetUserinfo( int index, const char *val ) { if ( index < 0 || index >= sv_maxclients->integer ) { - Com_Error (ERR_DROP, "SV_SetUserinfo: bad index %i\n", index); + Com_Error (ERR_DROP, "SV_SetUserinfo: bad index %i", index); } if ( !val ) { @@ -199,7 +199,7 @@ void SV_GetUserinfo( int index, char *buffer, int bufferSize ) { Com_Error( ERR_DROP, "SV_GetUserinfo: bufferSize == %i", bufferSize ); } if ( index < 0 || index >= sv_maxclients->integer ) { - Com_Error (ERR_DROP, "SV_GetUserinfo: bad index %i\n", index); + Com_Error (ERR_DROP, "SV_GetUserinfo: bad index %i", index); } Q_strncpyz( buffer, svs.clients[ index ].userinfo, bufferSize ); } diff --git a/code/server/sv_net_chan.c b/code/server/sv_net_chan.c index 5b2f5004..e83f4380 100644 --- a/code/server/sv_net_chan.c +++ b/code/server/sv_net_chan.c @@ -139,7 +139,7 @@ void SV_Netchan_TransmitNextFragment( client_t *client ) { { // make sure the netchan queue has been properly initialized (you never know) if ((!client->netchan_end_queue) && (client->state >= CS_CONNECTED)) { - Com_Error(ERR_DROP, "netchan queue is not properly initialized in SV_Netchan_TransmitNextFragment\n"); + Com_Error(ERR_DROP, "netchan queue is not properly initialized in SV_Netchan_TransmitNextFragment"); } // the last fragment was transmitted, check wether we have queued messages if (client->netchan_start_queue) { diff --git a/code/server/sv_snapshot.c b/code/server/sv_snapshot.c index e96a4dc8..a2e987d7 100644 --- a/code/server/sv_snapshot.c +++ b/code/server/sv_snapshot.c @@ -350,7 +350,7 @@ static void SV_AddEntitiesVisibleFromPoint( vec3_t origin, clientSnapshot_t *fra // entities can be flagged to be sent to a given mask of clients if ( ent->r.svFlags & SVF_CLIENTMASK ) { if (frame->ps.clientNum >= 32) - Com_Error( ERR_DROP, "SVF_CLIENTMASK: clientNum >= 32\n" ); + Com_Error( ERR_DROP, "SVF_CLIENTMASK: clientNum >= 32" ); if (~ent->r.singleClient & (1 << frame->ps.clientNum)) continue; }