http://bugs.gentoo.org/401629 http://trac.videolan.org/vlc/ticket/5964 --- modules/gui/skins2/src/theme_loader.cpp +++ modules/gui/skins2/src/theme_loader.cpp @@ -768,7 +768,7 @@ { void *toClose = currentGzVp; currentGzVp = NULL; currentGzFd = -1; - return gzclose( toClose ); + return gzclose( (gzFile) toClose ); } return -1; } @@ -777,7 +777,7 @@ { if( currentGzVp != NULL && fd != -1 ) { - return gzread( currentGzVp, p_buffer, i_length ); + return gzread( (gzFile) currentGzVp, p_buffer, i_length ); } return -1; } @@ -786,7 +786,7 @@ { if( currentGzVp != NULL && fd != -1 ) { - return gzwrite( currentGzVp, const_cast(p_buffer), i_length ); + return gzwrite( (gzFile) currentGzVp, const_cast(p_buffer), i_length ); } return -1; }