1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-02 15:29:33 +00:00

Fixed a bug: Wrong variable size trucates data.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4945 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-01-28 16:03:41 +00:00
parent 5855137d8c
commit fa1b5f5f3c

View File

@ -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);