diff options
-rw-r--r-- | engines/sludge/newfatal.cpp | 2 |
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; } |