mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
Fixed a C99ism.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5682 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
95413d0350
commit
e5cdab4544
@ -924,13 +924,17 @@ void DumpObjSegSize (FILE* F, unsigned long Offset)
|
||||
/* Read and print the sizes of all segments */
|
||||
while (Count--) {
|
||||
|
||||
unsigned long Size;
|
||||
|
||||
/* Read the data for one segment */
|
||||
unsigned long DataSize = Read32 (F);
|
||||
unsigned long NextSeg = ftell (F) + DataSize;
|
||||
const char* Name = GetString (&StrPool, ReadVar (F));
|
||||
unsigned Len = strlen (Name);
|
||||
(void) ReadVar (F); /* Skip segment flags */
|
||||
unsigned long Size = ReadVar (F);
|
||||
|
||||
/* Skip segment flags, read size */
|
||||
(void) ReadVar (F);
|
||||
Size = ReadVar (F);
|
||||
|
||||
/* Skip alignment, type and fragment count */
|
||||
(void) ReadVar (F);
|
||||
|
Loading…
x
Reference in New Issue
Block a user