diff options
Diffstat (limited to 'source/cServer.cpp')
-rw-r--r-- | source/cServer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cServer.cpp b/source/cServer.cpp index 4411dfb78..a1ff76292 100644 --- a/source/cServer.cpp +++ b/source/cServer.cpp @@ -476,7 +476,7 @@ void cServer::ServerCommand( const char * a_Cmd ) }
if( split[0].compare( "numchunks" ) == 0 )
{
- LOG("Num loaded chunks: %i\n", cRoot::Get()->GetTotalChunkCount() );
+ LOG("Num loaded chunks: %i", cRoot::Get()->GetTotalChunkCount() );
return;
}
|