diff --git a/src/ld65/objfile.c b/src/ld65/objfile.c index ec4740964..24a9afda8 100644 --- a/src/ld65/objfile.c +++ b/src/ld65/objfile.c @@ -6,7 +6,7 @@ /* */ /* */ /* */ -/* (C) 1998-2011, Ullrich von Bassewitz */ +/* (C) 1998-2012, Ullrich von Bassewitz */ /* Roemerstrasse 52 */ /* D-70794 Filderstadt */ /* EMail: uz@cc65.org */ @@ -34,10 +34,6 @@ #include -#include -#include -#include /* EMX needs this */ -#include /* common */ #include "fname.h" @@ -208,7 +204,7 @@ void ObjReadDbgSyms (FILE* F, unsigned long Pos, ObjData* O) /* Read the hll debug symbols */ DbgSymCount = ReadVar (F); CollGrow (&O->HLLDbgSyms, DbgSymCount); - for (I = 0; I < DbgSymCount; ++I) { + for (I = 0; I < DbgSymCount; ++I) { CollAppend (&O->HLLDbgSyms, ReadHLLDbgSym (F, O, I)); } }