From ee86a74cd378fc66635d7914fb549d70e6e58e5c Mon Sep 17 00:00:00 2001 From: Willem Jan Palenstijn Date: Thu, 30 Mar 2017 22:00:27 +0200 Subject: SCI: Fix remaining format string warning --- engines/sci/engine/script.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/sci/engine/script.cpp b/engines/sci/engine/script.cpp index a13565c3bd..a8cee1f393 100644 --- a/engines/sci/engine/script.cpp +++ b/engines/sci/engine/script.cpp @@ -127,7 +127,7 @@ void Script::load(int script_nr, ResourceManager *resMan, ScriptPatcher *scriptP // // TODO: Remove this once such a mechanism is in place if (script->size() > 65535) - warning("TODO: SCI script %d is over 64KB - it's %lu bytes long. This can't " + warning("TODO: SCI script %d is over 64KB - it's %u bytes long. This can't " "be fully handled at the moment", script_nr, script->size()); } -- cgit v1.2.3