]> git.pld-linux.org Git - packages/cc65.git/commitdiff
- what is was meant to be??? only broke build with sizeof(unsigned)<sizeof(long)
authorJakub Bogusz <qboosh@pld-linux.org>
Thu, 25 Dec 2003 19:11:02 +0000 (19:11 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    cc65-types.patch -> 1.1

cc65-types.patch [new file with mode: 0644]

diff --git a/cc65-types.patch b/cc65-types.patch
new file mode 100644 (file)
index 0000000..6c12705
--- /dev/null
@@ -0,0 +1,11 @@
+--- cc65-2.10.0/src/cc65/datatype.c.orig       2003-11-28 22:12:13.000000000 +0000
++++ cc65-2.10.0/src/cc65/datatype.c    2003-12-25 18:58:19.000000000 +0000
+@@ -761,7 +761,7 @@
+  */
+ {
+     CHECK (IsTypeArray (T));
+-    return (unsigned) Decode (T+1);
++    return (long) Decode (T+1);
+ }
This page took 0.084248 seconds and 4 git commands to generate.