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

Jean-Baptiste Kempf git at videolan.org
Tue Jan 31 12:54:24 CET 2012


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

Skins: fix compilation with zlib 1.2.6

Close #5964

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

 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 c72c630..e2ef007 100644
--- a/modules/gui/skins2/src/theme_loader.cpp
+++ b/modules/gui/skins2/src/theme_loader.cpp
@@ -751,7 +751,7 @@ int gzclose_frontend( int fd )
     {
         void *toClose = currentGzVp;
         currentGzVp = NULL;  currentGzFd = -1;
-        return gzclose( toClose );
+        return gzclose( (gzFile) toClose );
     }
     return -1;
 }
@@ -760,7 +760,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;
 }
@@ -769,7 +769,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