[Scummvm-git-logs] scummvm master -> f3e0c4d093f52d1728b65c078df88c2f482ec956

waltervn walter at vanniftrik-it.nl
Mon Dec 26 15:33:20 CET 2016


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:
f3e0c4d093 ADL: Silence CID 1356412/1356413


Commit: f3e0c4d093f52d1728b65c078df88c2f482ec956
    https://github.com/scummvm/scummvm/commit/f3e0c4d093f52d1728b65c078df88c2f482ec956
Author: Walter van Niftrik (walter at scummvm.org)
Date: 2016-12-26T15:31:20+01:00

Commit Message:
ADL: Silence CID 1356412/1356413

Changed paths:
    engines/adl/adl.cpp


diff --git a/engines/adl/adl.cpp b/engines/adl/adl.cpp
index 3d95f46..3cf68c5 100644
--- a/engines/adl/adl.cpp
+++ b/engines/adl/adl.cpp
@@ -1240,8 +1240,8 @@ bool AdlEngine::matchCommand(ScriptEnv &env) const {
 		return false;
 
 	if (DebugMan.isDebugChannelEnabled(kDebugChannelScript)) {
-		op_debug("IF\n\tROOM == %s", roomStr(env.getCommand().room).c_str());
-		op_debug("\t&& SAID(%s, %s)", verbStr(env.getCommand().verb).c_str(), nounStr(env.getCommand().noun).c_str());
+		(void)op_debug("IF\n\tROOM == %s", roomStr(env.getCommand().room).c_str());
+		(void)op_debug("\t&& SAID(%s, %s)", verbStr(env.getCommand().verb).c_str(), nounStr(env.getCommand().noun).c_str());
 	}
 
 	for (uint i = 0; i < env.getCondCount(); ++i) {
@@ -1254,7 +1254,7 @@ bool AdlEngine::matchCommand(ScriptEnv &env) const {
 
 		if (numArgs < 0) {
 			if (DebugMan.isDebugChannelEnabled(kDebugChannelScript))
-				op_debug("FAIL\n");
+				(void)op_debug("FAIL\n");
 			return false;
 		}
 
@@ -1266,7 +1266,7 @@ bool AdlEngine::matchCommand(ScriptEnv &env) const {
 
 void AdlEngine::doActions(ScriptEnv &env) {
 	if (DebugMan.isDebugChannelEnabled(kDebugChannelScript))
-		op_debug("THEN");
+		(void)op_debug("THEN");
 
 	for (uint i = 0; i < env.getActCount(); ++i) {
 		byte op = env.op();
@@ -1278,7 +1278,7 @@ void AdlEngine::doActions(ScriptEnv &env) {
 
 		if (numArgs < 0) {
 			if (DebugMan.isDebugChannelEnabled(kDebugChannelScript))
-				op_debug("ABORT\n");
+				(void)op_debug("ABORT\n");
 			return;
 		}
 
@@ -1286,7 +1286,7 @@ void AdlEngine::doActions(ScriptEnv &env) {
 	}
 
 	if (DebugMan.isDebugChannelEnabled(kDebugChannelScript))
-		op_debug("END\n");
+		(void)op_debug("END\n");
 }
 
 bool AdlEngine::doOneCommand(const Commands &commands, byte verb, byte noun) {





More information about the Scummvm-git-logs mailing list