fix warning:

equality comparison with extraneous parentheses
pull/332/head
abma 2014-08-17 23:39:49 +02:00
parent 56ddb4f4af
commit c7ab8383bd
1 changed files with 1 additions and 1 deletions

View File

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