]> git.pld-linux.org Git - packages/cc65.git/blobdiff - cc65-types.patch
- what is was meant to be??? only broke build with sizeof(unsigned)<sizeof(long)
[packages/cc65.git] / cc65-types.patch
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.081287 seconds and 4 git commands to generate.