Skip to content

Commit

Permalink
Merge pull request #1303 from mikkle/fix-pr1294
Browse files Browse the repository at this point in the history
fix Linux build after 6c80612
  • Loading branch information
wsoltys committed Aug 18, 2012
2 parents 6c80612 + f4049bf commit 966b5a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xbmc/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ bool CApplication::Create()
g_powerManager.SetDefaults();
if (!g_settings.Load())
{
CLog::Log(LOGFATAL, __FUNCTION__": Failed to reset settings");
CLog::Log(LOGFATAL, "%s: Failed to reset settings", __FUNCTION__);
return false;
}

Expand Down Expand Up @@ -699,7 +699,7 @@ bool CApplication::Create()
CLog::Log(LOGINFO, "load %s language file, from path: %s", strLanguage.c_str(), strLanguagePath.c_str());
if (!g_localizeStrings.Load(strLanguagePath, strLanguage))
{
CLog::Log(LOGFATAL, __FUNCTION__": Failed to load %s language file, from path: %s", strLanguage.c_str(), strLanguagePath.c_str());
CLog::Log(LOGFATAL, "%s: Failed to load %s language file, from path: %s", __FUNCTION__, strLanguage.c_str(), strLanguagePath.c_str());
return false;
}

Expand Down

0 comments on commit 966b5a6

Please sign in to comment.