[Scummvm-git-logs] scummvm master -> 0b3ee09ee4bf9eddb02081d1e11c59bd4a789c0f

digitall noreply at scummvm.org
Sat Jan 18 22:48:12 UTC 2025


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:
0b3ee09ee4 GOT: Fix GCC Compiler Warning


Commit: 0b3ee09ee4bf9eddb02081d1e11c59bd4a789c0f
    https://github.com/scummvm/scummvm/commit/0b3ee09ee4bf9eddb02081d1e11c59bd4a789c0f
Author: D G Turner (digitall at scummvm.org)
Date: 2025-01-18T22:47:52Z

Commit Message:
GOT: Fix GCC Compiler Warning

Changed paths:
    engines/got/game/script.cpp


diff --git a/engines/got/game/script.cpp b/engines/got/game/script.cpp
index 4f62a0cf031..7d85ee4f92e 100644
--- a/engines/got/game/script.cpp
+++ b/engines/got/game/script.cpp
@@ -1095,7 +1095,7 @@ int Scripts::cmd_exec() {
 		return 6;
 
 	if (_lValue > 5) {
-		error("cmd_exec - unhandled lValue %d", _lValue);
+		error("cmd_exec - unhandled lValue %ld", _lValue);
 	}
 	
 	(this->*scr_func[_lValue - 1])();




More information about the Scummvm-git-logs mailing list