]> git.pld-linux.org Git - packages/urxvt.git/commitdiff
- initial commit
authorŁukasz Krotowski <lkrotowski@pld-linux.org>
Tue, 1 Dec 2009 19:01:35 +0000 (19:01 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    urxvt-gcc44.patch -> 1.1

urxvt-gcc44.patch [new file with mode: 0644]

diff --git a/urxvt-gcc44.patch b/urxvt-gcc44.patch
new file mode 100644 (file)
index 0000000..40ecaa6
--- /dev/null
@@ -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);
+ }
This page took 0.11658 seconds and 4 git commands to generate.