[vlc-commits] Skins: fix compilation with zlib 1.2.6

Jean-Baptiste Kempf git at videolan.org
Tue Jan 31 22:17:41 CET 2012


vlc/vlc-2.0 | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Tue Jan 31 12:53:38 2012 +0100| [f7f2bcae94482df5b4aabed309160fc02ad20b24] | committer: Jean-Baptiste Kempf

Skins: fix compilation with zlib 1.2.6

Close #5964
(cherry picked from commit 18173044cdaa1fce6652614b893054d792f4e258)

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.0.git/?a=commit;h=f7f2bcae94482df5b4aabed309160fc02ad20b24
---

 modules/gui/skins2/src/theme_loader.cpp |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/gui/skins2/src/theme_loader.cpp b/modules/gui/skins2/src/theme_loader.cpp
index 9e78572..e7825d0 100644
--- a/modules/gui/skins2/src/theme_loader.cpp
+++ b/modules/gui/skins2/src/theme_loader.cpp
@@ -755,7 +755,7 @@ int gzclose_frontend( int fd )
     {
         void *toClose = currentGzVp;
         currentGzVp = NULL;  currentGzFd = -1;
-        return gzclose( toClose );
+        return gzclose( (gzFile) toClose );
     }
     return -1;
 }
@@ -764,7 +764,7 @@ int gzread_frontend( int fd, void *p_buffer, size_t i_length )
 {
     if( currentGzVp != NULL && fd != -1 )
     {
-        return gzread( currentGzVp, p_buffer, i_length );
+        return gzread( (gzFile) currentGzVp, p_buffer, i_length );
     }
     return -1;
 }
@@ -773,7 +773,7 @@ int gzwrite_frontend( int fd, const void * p_buffer, size_t i_length )
 {
     if( currentGzVp != NULL && fd != -1 )
     {
-        return gzwrite( currentGzVp, const_cast<void*>(p_buffer), i_length );
+        return gzwrite( (gzFile) currentGzVp, const_cast<void*>(p_buffer), i_length );
     }
     return -1;
 }



More information about the vlc-commits mailing list