From 29dcab406af6c1e5b0a0a9d421c71771781fde40 Mon Sep 17 00:00:00 2001 From: D G Turner Date: Wed, 24 Jul 2019 16:35:04 +0100 Subject: GLK: FROTZ: Fix GCC Compilation Error from Missing Format String --- engines/glk/frotz/frotz.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/glk') diff --git a/engines/glk/frotz/frotz.cpp b/engines/glk/frotz/frotz.cpp index 02ee0900c9..c9a039519d 100644 --- a/engines/glk/frotz/frotz.cpp +++ b/engines/glk/frotz/frotz.cpp @@ -123,7 +123,7 @@ Common::Error Frotz::loadGameState(int slot) { || h_screen_cols != old_screen_cols)) erase_window(1); } else { - error(_("Error reading save file")); + error("%s", _("Error reading save file")); } return Common::kNoError; -- cgit v1.2.3