Browse Source

fix warning:

equality comparison with extraneous parentheses
abma 11 years ago
parent
commit
c7ab8383bd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contrib/unzip/unzip.c

+ 1 - 1
contrib/unzip/unzip.c

@@ -1246,7 +1246,7 @@ extern int ZEXPORT unzReadCurrentFile  (file, buf, 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;