diff options
author | Ori Avtalion | 2011-02-12 10:36:35 +0000 |
---|---|---|
committer | Ori Avtalion | 2011-02-12 10:36:35 +0000 |
commit | 3354204f53bb41b28f6dbf260646df3ee70d279b (patch) | |
tree | 72bc5b666bd3ba99cf4b55046d6a7aa0104bdc8a /common | |
parent | 84a8bdc86ba488057052a7c87fab62dd916e43df (diff) | |
download | scummvm-rg350-3354204f53bb41b28f6dbf260646df3ee70d279b.tar.gz scummvm-rg350-3354204f53bb41b28f6dbf260646df3ee70d279b.tar.bz2 scummvm-rg350-3354204f53bb41b28f6dbf260646df3ee70d279b.zip |
JANITORIAL: Remove extraneous parentheses
svn-id: r55890
Diffstat (limited to 'common')
-rw-r--r-- | common/unzip.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/unzip.cpp b/common/unzip.cpp index da9bb65f43..cd5d37f4bd 100644 --- a/common/unzip.cpp +++ b/common/unzip.cpp @@ -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; |