[Scummvm-cvs-logs] SF.net SVN: scummvm:[50325] scummvm/trunk/engines/sci/engine/vm.cpp

wjpalenstijn at users.sourceforge.net wjpalenstijn at users.sourceforge.net
Sat Jun 26 17:55:40 CEST 2010


Revision: 50325
          http://scummvm.svn.sourceforge.net/scummvm/?rev=50325&view=rev
Author:   wjpalenstijn
Date:     2010-06-26 15:55:40 +0000 (Sat, 26 Jun 2010)

Log Message:
-----------
Fix format string warning

Modified Paths:
--------------
    scummvm/trunk/engines/sci/engine/vm.cpp

Modified: scummvm/trunk/engines/sci/engine/vm.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/vm.cpp	2010-06-26 15:48:03 UTC (rev 50324)
+++ scummvm/trunk/engines/sci/engine/vm.cpp	2010-06-26 15:55:40 UTC (rev 50325)
@@ -254,7 +254,7 @@
 				}
 				workaround++;
 			}
-			error("Uninitialized read for temp %d from method %s::%s (script %d, localCall %lx)", index, curObjectName.c_str(), curMethodName.c_str(), curScriptNr, lastCall->localCallOffset);
+			error("Uninitialized read for temp %d from method %s::%s (script %d, localCall %x)", index, curObjectName.c_str(), curMethodName.c_str(), curScriptNr, lastCall->localCallOffset);
 		}
 		return r[index];
 	} else


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list