mirror of
https://github.com/cc65/cc65.git
synced 2024-11-17 09:07:32 +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:
parent
5855137d8c
commit
fa1b5f5f3c
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user