summaryrefslogtreecommitdiffstats
path: root/base/codeblocks/gcc44.patch
diff options
context:
space:
mode:
Diffstat (limited to 'base/codeblocks/gcc44.patch')
-rw-r--r--base/codeblocks/gcc44.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/base/codeblocks/gcc44.patch b/base/codeblocks/gcc44.patch
deleted file mode 100644
index 9efd4d983..000000000
--- a/base/codeblocks/gcc44.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- codeblocks-8.02/src/src/prefix.cpp.origin 2009-08-15 21:40:41.000000000 +0200
-+++ codeblocks-8.02/src/src/prefix.cpp 2009-08-15 21:42:12.000000000 +0200
-@@ -393,7 +393,7 @@
-
- br_return_val_if_fail (path != (char *) NULL, (char *) NULL);
-
-- end = strrchr (path, '/');
-+ end = (char*) strrchr (path, '/');
- if (!end) return strdup (".");
-
- while (end > path && *end == '/')
-@@ -429,7 +429,7 @@
- br_return_val_if_fail (path != (char *) NULL, (char *) NULL);
-
- if (!*path) return strdup ("/");
-- end = strrchr (path, '/');
-+ end = (char*) strrchr (path, '/');
- if (!end) return strdup (path);
-
- tmp = br_strndup ((char *) path, end - path);