[Scummvm-git-logs] scummvm master -> ee86a74cd378fc66635d7914fb549d70e6e58e5c
wjp
wjp at usecode.org
Thu Mar 30 22:02:19 CEST 2017
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
ee86a74cd3 SCI: Fix remaining format string warning
Commit: ee86a74cd378fc66635d7914fb549d70e6e58e5c
https://github.com/scummvm/scummvm/commit/ee86a74cd378fc66635d7914fb549d70e6e58e5c
Author: Willem Jan Palenstijn (wjp at usecode.org)
Date: 2017-03-30T22:00:27+02:00
Commit Message:
SCI: Fix remaining format string warning
Changed paths:
engines/sci/engine/script.cpp
diff --git a/engines/sci/engine/script.cpp b/engines/sci/engine/script.cpp
index a13565c..a8cee1f 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());
}
More information about the Scummvm-git-logs
mailing list