You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-arcade/gunocide2ex/files/gunocide2ex-1.0-glibc2.10.p...

15 lines
377 B

--- 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;
}