summaryrefslogtreecommitdiff
path: root/extra/vlc/vlc-1.1.13-skin2_theme_loader.patch
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2012-02-20 17:00:00 +0000
committerParabola <dev@list.parabolagnulinux.org>2012-02-20 17:00:00 +0000
commit1a09ca56e4f37ac4e995c924c649ede71a5c82aa (patch)
tree1679b738199f8160d32932e64299d83538beb719 /extra/vlc/vlc-1.1.13-skin2_theme_loader.patch
parent81ee1980feda43043eaebae2c596ae116a21f6e5 (diff)
Mon Feb 20 16:59:52 UTC 2012
Diffstat (limited to 'extra/vlc/vlc-1.1.13-skin2_theme_loader.patch')
-rw-r--r--extra/vlc/vlc-1.1.13-skin2_theme_loader.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/extra/vlc/vlc-1.1.13-skin2_theme_loader.patch b/extra/vlc/vlc-1.1.13-skin2_theme_loader.patch
deleted file mode 100644
index 5230b6485..000000000
--- a/extra/vlc/vlc-1.1.13-skin2_theme_loader.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- a/modules/gui/skins2/src/theme_loader.cpp 2012-02-02 17:52:07.000000000 +0100
-+++ b/modules/gui/skins2/src/theme_loader.cpp 2012-02-02 17:52:19.000000000 +0100
-@@ -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<void*>(p_buffer), i_length );
-+ return gzwrite( (gzFile) currentGzVp, const_cast<void*>(p_buffer), i_length );
- }
- return -1;
- }