[Scummvm-cvs-logs] SF.net SVN: scummvm:[55890] scummvm/trunk

salty-horse at users.sourceforge.net salty-horse at users.sourceforge.net
Sat Feb 12 11:36:36 CET 2011


Revision: 55890
          http://scummvm.svn.sourceforge.net/scummvm/?rev=55890&view=rev
Author:   salty-horse
Date:     2011-02-12 10:36:35 +0000 (Sat, 12 Feb 2011)

Log Message:
-----------
JANITORIAL: Remove extraneous parentheses

Modified Paths:
--------------
    scummvm/trunk/common/unzip.cpp
    scummvm/trunk/engines/sci/engine/gc.cpp

Modified: scummvm/trunk/common/unzip.cpp
===================================================================
--- scummvm/trunk/common/unzip.cpp	2011-02-12 10:00:52 UTC (rev 55889)
+++ scummvm/trunk/common/unzip.cpp	2011-02-12 10:36:35 UTC (rev 55890)
@@ -1148,7 +1148,7 @@
 		return UNZ_PARAMERROR;
 
 
-	if ((pfile_in_zip_read_info->read_buffer == NULL))
+	if (pfile_in_zip_read_info->read_buffer == NULL)
 		return UNZ_END_OF_LIST_OF_FILE;
 	if (len==0)
 		return 0;

Modified: scummvm/trunk/engines/sci/engine/gc.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/gc.cpp	2011-02-12 10:00:52 UTC (rev 55889)
+++ scummvm/trunk/engines/sci/engine/gc.cpp	2011-02-12 10:36:35 UTC (rev 55890)
@@ -98,7 +98,7 @@
 	Common::List<ExecStack>::iterator iter = s->_executionStack.reverse_begin();
 
 	// Skip fake kernel stack frame if it's on top
-	if (((*iter).type == EXEC_STACK_TYPE_KERNEL))
+	if ((*iter).type == EXEC_STACK_TYPE_KERNEL)
 		--iter;
 
 	assert((iter != s->_executionStack.end()) && ((*iter).type != EXEC_STACK_TYPE_KERNEL));


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