summaryrefslogtreecommitdiff
path: root/games-arcade/gunocide2ex/files/gunocide2ex-1.0-glibc2.10.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
commit0cf2f20608308acdf3cb922c3736446bbd8f3388 (patch)
tree07815070629c7c11000a7f51ceb8ccbccb49a809 /games-arcade/gunocide2ex/files/gunocide2ex-1.0-glibc2.10.patch
parent1798c4aeca70ac8d0a243684d6a798fbc65735f8 (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'games-arcade/gunocide2ex/files/gunocide2ex-1.0-glibc2.10.patch')
-rw-r--r--games-arcade/gunocide2ex/files/gunocide2ex-1.0-glibc2.10.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/games-arcade/gunocide2ex/files/gunocide2ex-1.0-glibc2.10.patch b/games-arcade/gunocide2ex/files/gunocide2ex-1.0-glibc2.10.patch
deleted file mode 100644
index 6b659c76a82d..000000000000
--- a/games-arcade/gunocide2ex/files/gunocide2ex-1.0-glibc2.10.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/mmgr.cpp
-+++ src/mmgr.cpp
-@@ -228,9 +228,9 @@
-
- static const char *sourceFileStripper(const char *sourceFile)
- {
-- char *ptr = strrchr(sourceFile, '\\');
-+ char *ptr = strrchr((char *)sourceFile, '\\');
- if (ptr) return ptr + 1;
-- ptr = strrchr(sourceFile, '/');
-+ ptr = strrchr((char *)sourceFile, '/');
- if (ptr) return ptr + 1;
- return sourceFile;
- }