diff options
author | Max Horn | 2010-06-15 12:34:55 +0000 |
---|---|---|
committer | Max Horn | 2010-06-15 12:34:55 +0000 |
commit | 82b66ffdf8439eff0043256bff9daf4f0c3d84ed (patch) | |
tree | f7a377ba8b75ae92004e6f5aa1a5b44dedf40df4 /gui | |
parent | f93644325244cc111634e2e8e4f97adb5a3fbe15 (diff) | |
download | scummvm-rg350-82b66ffdf8439eff0043256bff9daf4f0c3d84ed.tar.gz scummvm-rg350-82b66ffdf8439eff0043256bff9daf4f0c3d84ed.tar.bz2 scummvm-rg350-82b66ffdf8439eff0043256bff9daf4f0c3d84ed.zip |
Fix some warnings about 'format not a string literal'.
svn-id: r49847
Diffstat (limited to 'gui')
-rw-r--r-- | gui/GuiManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/GuiManager.cpp b/gui/GuiManager.cpp index 49c078a723..fbcacf2d16 100644 --- a/gui/GuiManager.cpp +++ b/gui/GuiManager.cpp @@ -73,7 +73,7 @@ GuiManager::GuiManager() : _redrawStatus(kRedrawDisabled), // Loading the theme failed, try to load the built-in theme if (!loadNewTheme("builtin", gfxMode)) { // Loading the built-in theme failed as well. Bail out - error(_t("Failed to load any GUI theme, aborting")); + error("%s", _t("Failed to load any GUI theme, aborting")); } } |