JANITORIAL: Remove extraneous parentheses
svn-id: r55890
This commit is contained in:
parent
84a8bdc86b
commit
3354204f53
2 changed files with 2 additions and 2 deletions
|
@ -1148,7 +1148,7 @@ int unzReadCurrentFile(unzFile file, voidp buf, unsigned len) {
|
|||
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;
|
||||
|
|
|
@ -98,7 +98,7 @@ AddrSet *findAllActiveReferences(EngineState *s) {
|
|||
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));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue