From eecfead53f7b775c5c6bdae7a137443467128197 Mon Sep 17 00:00:00 2001 From: Jakub Bogusz Date: Thu, 25 Dec 2003 19:11:02 +0000 Subject: [PATCH] - what is was meant to be??? only broke build with sizeof(unsigned) 1.1 --- cc65-types.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 cc65-types.patch diff --git a/cc65-types.patch b/cc65-types.patch new file mode 100644 index 0000000..6c12705 --- /dev/null +++ b/cc65-types.patch @@ -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); + } + + -- 2.43.0