1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-25 17:29:50 +00:00

Removed unused variable.

This commit is contained in:
Oliver Schmidt 2013-05-02 15:13:19 +03:00
parent 8f7da7885a
commit 0456ff8e70

View File

@ -191,7 +191,6 @@ Section* ReadSection (FILE* F, ObjData* O)
/* Read a section from a file */ /* Read a section from a file */
{ {
unsigned Name; unsigned Name;
unsigned Flags;
unsigned Size; unsigned Size;
unsigned long Alignment; unsigned long Alignment;
unsigned char Type; unsigned char Type;
@ -202,7 +201,7 @@ Section* ReadSection (FILE* F, ObjData* O)
/* Read the segment data */ /* Read the segment data */
(void) Read32 (F); /* File size of data */ (void) Read32 (F); /* File size of data */
Name = MakeGlobalStringId (O, ReadVar (F)); /* Segment name */ Name = MakeGlobalStringId (O, ReadVar (F)); /* Segment name */
Flags = ReadVar (F); /* Segment flags (currently unused) */ ReadVar (F); /* Segment flags (currently unused) */
Size = ReadVar (F); /* Size of data */ Size = ReadVar (F); /* Size of data */
Alignment = ReadVar (F); /* Alignment */ Alignment = ReadVar (F); /* Alignment */
Type = Read8 (F); /* Segment type */ Type = Read8 (F); /* Segment type */