aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/newfatal.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2017-07-13 18:46:55 +0200
committerEugene Sandulenko2017-07-13 18:46:55 +0200
commit2b0cbd3c7ea3aa27b675324cc833d13894a4d623 (patch)
treed005cf36acac529f9b0293046f2cab333aa413c7 /engines/sludge/newfatal.cpp
parent50f12049666414b5343816ce784be984a44ae6dc (diff)
downloadscummvm-rg350-2b0cbd3c7ea3aa27b675324cc833d13894a4d623.tar.gz
scummvm-rg350-2b0cbd3c7ea3aa27b675324cc833d13894a4d623.tar.bz2
scummvm-rg350-2b0cbd3c7ea3aa27b675324cc833d13894a4d623.zip
SLUDGE: Fix warning
Diffstat (limited to 'engines/sludge/newfatal.cpp')
-rw-r--r--engines/sludge/newfatal.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sludge/newfatal.cpp b/engines/sludge/newfatal.cpp
index 6501f82a64..925aeab3ea 100644
--- a/engines/sludge/newfatal.cpp
+++ b/engines/sludge/newfatal.cpp
@@ -68,7 +68,7 @@ void registerWindowForFatal() {
int inFatal(const Common::String &str) {
killSoundStuff();
- error(str.c_str());
+ error("%s", str.c_str());
return true;
}