From 45365c7c8338a1e4ec02f860d1b3ece8a18441e3 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sat, 30 Jul 2011 15:08:04 -0400 Subject: [PATCH] Fix warning. --- src/ProfileManager.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ProfileManager.cpp b/src/ProfileManager.cpp index fa1531c316..eb0fb8d34f 100644 --- a/src/ProfileManager.cpp +++ b/src/ProfileManager.cpp @@ -507,7 +507,8 @@ bool ProfileManager::DeleteLocalProfile( RString sProfileID ) } else { - LOG->Warn( ssprintf("[ProfileManager::DeleteLocalProfile] DeleteRecursive(%s) failed",sProfileID.c_str()) ); + LOG->Warn("[ProfileManager::DeleteLocalProfile] DeleteRecursive(%s) failed", + sProfileID.c_str() ); return false; } }