From fa1b5f5f3c1be341fff3fe66c09e0830db980845 Mon Sep 17 00:00:00 2001 From: uz Date: Fri, 28 Jan 2011 16:03:41 +0000 Subject: [PATCH] Fixed a bug: Wrong variable size trucates data. git-svn-id: svn://svn.cc65.org/cc65/trunk@4945 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/ld65/exports.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ld65/exports.c b/src/ld65/exports.c index c8722f19e..246bd59aa 100644 --- a/src/ld65/exports.c +++ b/src/ld65/exports.c @@ -343,7 +343,7 @@ Export* ReadExport (FILE* F, ObjData* O) Export* E; /* Read the type */ - unsigned char Type = ReadVar (F); + unsigned Type = ReadVar (F); /* Read the address size */ unsigned char AddrSize = Read8 (F);