JANITORIAL: Remove extraneous parentheses

svn-id: r55890
This commit is contained in:
Ori Avtalion 2011-02-12 10:36:35 +00:00
parent 84a8bdc86b
commit 3354204f53
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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));