From 84b5cf192e5c3e1332280938af95d0d09e8a6654 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Fri, 27 May 2011 10:53:30 -0400 Subject: [PATCH] Don't ignore those warnings! --- src/PlayerOptions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PlayerOptions.cpp b/src/PlayerOptions.cpp index 11fbafffdc..e33c4108d8 100644 --- a/src/PlayerOptions.cpp +++ b/src/PlayerOptions.cpp @@ -265,7 +265,7 @@ void PlayerOptions::FromString( const RString &sMultipleMods ) { if (!FromOneModString( *s, sThrowAway )) { - LOG->Trace( "Attempted to load a non-existing mod %s for the Player. Ignoring.", s ); + LOG->Trace( "Attempted to load a non-existing mod %s for the Player. Ignoring.", (*s).c_str() ); } } }