From a5b8cc096844b3bdec84f4f17c5cd4ff20853ec3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=81ukasz=20Krotowski?= Date: Tue, 1 Dec 2009 19:01:35 +0000 Subject: [PATCH] - initial commit Changed files: urxvt-gcc44.patch -> 1.1 --- urxvt-gcc44.patch | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 urxvt-gcc44.patch diff --git a/urxvt-gcc44.patch b/urxvt-gcc44.patch new file mode 100644 index 0000000..40ecaa6 --- /dev/null +++ b/urxvt-gcc44.patch @@ -0,0 +1,22 @@ +--- rxvt-unicode-9.06/src/command.C.org 2009-12-01 19:35:33.782626547 +0100 ++++ rxvt-unicode-9.06/src/command.C 2009-12-01 19:37:32.847911463 +0100 +@@ -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) + { +--- rxvt-unicode-9.06/src/misc.C.org 2009-12-01 19:42:22.981876435 +0100 ++++ rxvt-unicode-9.06/src/misc.C 2009-12-01 19:42:55.740002187 +0100 +@@ -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); + } -- 2.44.0