]> git.pld-linux.org Git - packages/cc65.git/blame - cc65-types.patch
- what is was meant to be??? only broke build with sizeof(unsigned)<sizeof(long)
[packages/cc65.git] / cc65-types.patch
CommitLineData
eecfead5
JB
1--- cc65-2.10.0/src/cc65/datatype.c.orig 2003-11-28 22:12:13.000000000 +0000
2+++ cc65-2.10.0/src/cc65/datatype.c 2003-12-25 18:58:19.000000000 +0000
3@@ -761,7 +761,7 @@
4 */
5 {
6 CHECK (IsTypeArray (T));
7- return (unsigned) Decode (T+1);
8+ return (long) Decode (T+1);
9 }
10
11
This page took 0.03373 seconds and 4 git commands to generate.