summaryrefslogtreecommitdiff
path: root/alsaplayer-g++.patch
diff options
context:
space:
mode:
Diffstat (limited to 'alsaplayer-g++.patch')
-rw-r--r--alsaplayer-g++.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/alsaplayer-g++.patch b/alsaplayer-g++.patch
deleted file mode 100644
index 809cd07..0000000
--- a/alsaplayer-g++.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- alsaplayer-0.99.80/input/flac/FlacPlugin.cpp.orig 2007-10-29 22:00:16.000000000 +0100
-+++ alsaplayer-0.99.80/input/flac/FlacPlugin.cpp 2010-06-03 16:59:52.987826407 +0200
-@@ -239,7 +239,7 @@
- else
- {
- // use stream name
-- char * fname = strrchr (f->name ().c_str (), '/');
-+ char * fname = (char *)strrchr (f->name ().c_str (), '/');
- if (fname)
- {
- fname++;
-@@ -270,7 +270,7 @@
- if (strncmp(name, "http://", 7) == 0) {
- return 0.0;
- }
-- char *ext = strrchr(name, '.');
-+ char *ext = (char *)strrchr(name, '.');
- if (!ext)
- return 0.0;
- ext++;
---- alsaplayer-0.99.80/app/ControlSocket.cpp~ 2007-07-08 16:27:31.000000000 +0200
-+++ alsaplayer-0.99.80/app/ControlSocket.cpp 2010-06-03 17:06:32.781825835 +0200
-@@ -21,6 +21,7 @@
- #include <cstdio>
- #include <cstdlib>
- #include <unistd.h>
-+#include <limits.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <sys/socket.h>