summaryrefslogtreecommitdiffstats
path: root/extra/codeblocks/gcc44.patch
diff options
context:
space:
mode:
authorsibel <lesibel@free.fr>2011-03-16 13:17:14 +0100
committersibel <lesibel@free.fr>2011-03-16 13:17:14 +0100
commit567c19560891689117bf2c9c157785544bbc93be (patch)
treeb8ebebdf72a2a02084f683b266623790a6ba0858 /extra/codeblocks/gcc44.patch
parent623368ca540bb067c1fe1d8a00d33a4d066705f0 (diff)
downloadnutyx-pakxe-567c19560891689117bf2c9c157785544bbc93be.tar.gz
nutyx-pakxe-567c19560891689117bf2c9c157785544bbc93be.tar.bz2
nutyx-pakxe-567c19560891689117bf2c9c157785544bbc93be.tar.xz
nutyx-pakxe-567c19560891689117bf2c9c157785544bbc93be.zip
codeblocks déplacé dans ouvert
Diffstat (limited to 'extra/codeblocks/gcc44.patch')
-rw-r--r--extra/codeblocks/gcc44.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/extra/codeblocks/gcc44.patch b/extra/codeblocks/gcc44.patch
deleted file mode 100644
index 9efd4d983..000000000
--- a/extra/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);