diff options
author | Eugene Sandulenko | 2017-07-13 18:46:55 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2017-07-13 18:46:55 +0200 |
commit | 2b0cbd3c7ea3aa27b675324cc833d13894a4d623 (patch) | |
tree | d005cf36acac529f9b0293046f2cab333aa413c7 /engines/sludge | |
parent | 50f12049666414b5343816ce784be984a44ae6dc (diff) | |
download | scummvm-rg350-2b0cbd3c7ea3aa27b675324cc833d13894a4d623.tar.gz scummvm-rg350-2b0cbd3c7ea3aa27b675324cc833d13894a4d623.tar.bz2 scummvm-rg350-2b0cbd3c7ea3aa27b675324cc833d13894a4d623.zip |
SLUDGE: Fix warning
Diffstat (limited to 'engines/sludge')
-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; } |