aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Hoops2012-12-13 17:46:16 -0500
committerMatthew Hoops2012-12-13 17:46:16 -0500
commita0863dfb3f3998f34c591f3007efe9f9f0f7f311 (patch)
tree3dc60998aaa693eabd23d44c9961d22e36bc360a
parent0bcd4414050e2b8571de0086c1820982ff886320 (diff)
downloadscummvm-rg350-a0863dfb3f3998f34c591f3007efe9f9f0f7f311.tar.gz
scummvm-rg350-a0863dfb3f3998f34c591f3007efe9f9f0f7f311.tar.bz2
scummvm-rg350-a0863dfb3f3998f34c591f3007efe9f9f0f7f311.zip
TINSEL: Silence gcc warning
-rw-r--r--engines/tinsel/sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tinsel/sound.cpp b/engines/tinsel/sound.cpp
index 2fb1dc112b..03aa3767c4 100644
--- a/engines/tinsel/sound.cpp
+++ b/engines/tinsel/sound.cpp
@@ -510,7 +510,7 @@ void SoundManager::showSoundError(const char *errorMsg, const char *soundFile) {
GUI::MessageDialog dialog(msg, "OK");
dialog.runModal();
- error(msg.c_str());
+ error("%s", msg.c_str());
}
/**