diff options
author | /dev/humancontroller <devhc@example.com> | 2017-04-15 00:09:18 +0200 |
---|---|---|
committer | /dev/humancontroller <devhc@example.com> | 2017-04-15 17:24:18 +0200 |
commit | e6bbd69de4cf8a316c9e17d882b1386a1e4da3fc (patch) | |
tree | 1aabe33ab82fb0b0bce4bfb3575da406face5b23 /src | |
parent | f96c783035aa842af6f7b04a37b09ca5ec4de437 (diff) |
add a missing \n for a cgame warning message
Diffstat (limited to 'src')
-rw-r--r-- | src/cgame/cg_snapshot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cgame/cg_snapshot.c b/src/cgame/cg_snapshot.c index 84b419f..9d58446 100644 --- a/src/cgame/cg_snapshot.c +++ b/src/cgame/cg_snapshot.c @@ -311,7 +311,7 @@ static snapshot_t *CG_ReadNextSnapshot( void ) if( cg.latestSnapshotNum > cgs.processedSnapshotNum + 1000 ) { - CG_Printf( "WARNING: CG_ReadNextSnapshot: way out of range, %i > %i", + CG_Printf( "WARNING: CG_ReadNextSnapshot: way out of range, %i > %i\n", cg.latestSnapshotNum, cgs.processedSnapshotNum ); } |