diff options
author | tyrry <tyrry@nutyx.(none)> | 2010-03-23 16:04:43 +0100 |
---|---|---|
committer | tyrry <tyrry@nutyx.(none)> | 2010-03-23 16:04:43 +0100 |
commit | ee43c5b4c9ed6a6ba37eadc7b7cec8d7e4f247c7 (patch) | |
tree | 8f701239d5794ba5b76a98df1d2014feebd9a73e /test/rxvt-unicode/gcc4.4.patch | |
parent | 4e88d3b98b8e640f7d95ed1527d56581e541739b (diff) | |
parent | 082114ded7501433dd31becbae522873f18c072e (diff) | |
download | nutyx-pakxe-ee43c5b4c9ed6a6ba37eadc7b7cec8d7e4f247c7.tar.gz nutyx-pakxe-ee43c5b4c9ed6a6ba37eadc7b7cec8d7e4f247c7.tar.bz2 nutyx-pakxe-ee43c5b4c9ed6a6ba37eadc7b7cec8d7e4f247c7.tar.xz nutyx-pakxe-ee43c5b4c9ed6a6ba37eadc7b7cec8d7e4f247c7.zip |
Merge remote branch 'nutyx-2009/master'
Diffstat (limited to 'test/rxvt-unicode/gcc4.4.patch')
-rw-r--r-- | test/rxvt-unicode/gcc4.4.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/test/rxvt-unicode/gcc4.4.patch b/test/rxvt-unicode/gcc4.4.patch deleted file mode 100644 index 06be6c4ba..000000000 --- a/test/rxvt-unicode/gcc4.4.patch +++ /dev/null @@ -1,23 +0,0 @@ ---- src/command.C.old 2009-05-28 15:21:04.457772957 +0200 -+++ src/command.C 2009-05-28 15:18:52.684597530 +0200 -@@ -3336,7 +3336,7 @@ - } - else - { -- char *eq = strchr (str, '='); // constness lost, but verified to be ok -+ char *eq = (char *) strchr ( str, '='); // constness lost, but verified to be ok - - if (eq) - { ---- src/misc.C.old 2009-05-28 15:21:16.400270603 +0200 -+++ src/misc.C 2009-05-28 15:21:51.697108339 +0200 -@@ -170,7 +170,7 @@ - char * - rxvt_basename (const char *str) NOTHROW - { -- char *base = strrchr (str, '/'); -+ char *base = (char *) strrchr (str, '/'); - - return (char *) (base ? base + 1 : str); - } - |