[vlc-commits] unzip: fix compilation warning
Felix Paul Kühne
git at videolan.org
Thu Oct 18 18:37:18 CEST 2012
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sun Aug 19 19:22:15 2012 +0200| [32b9c5bbb0e56bdd591d46423126377c8eaeea68] | committer: Felix Paul Kühne
unzip: fix compilation warning
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=32b9c5bbb0e56bdd591d46423126377c8eaeea68
---
modules/access/zip/unzip/unzip.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/access/zip/unzip/unzip.c b/modules/access/zip/unzip/unzip.c
index 46f37f2..de971c1 100644
--- a/modules/access/zip/unzip/unzip.c
+++ b/modules/access/zip/unzip/unzip.c
@@ -1244,7 +1244,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;
More information about the vlc-commits
mailing list