From: uz Date: Thu, 18 Aug 2011 11:57:57 +0000 (+0000) Subject: Use correct syntax. The old did work but wasn't really right. X-Git-Tag: V2.13.3~255 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2abd77ffe58d3eb492f25adba97962048abdf8b0;p=cc65 Use correct syntax. The old did work but wasn't really right. git-svn-id: svn://svn.cc65.org/cc65/trunk@5207 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/ld65/lineinfo.c b/src/ld65/lineinfo.c index d56bfc3bd..1320c24ef 100644 --- a/src/ld65/lineinfo.c +++ b/src/ld65/lineinfo.c @@ -62,7 +62,7 @@ static LineInfo* NewLineInfo (void) /* Initialize the fields */ LI->File = 0; - LI->Type = LI_TYPE_ASM; + LI->Type = LI_MAKE_TYPE (LI_TYPE_ASM, 0); LI->Pos.Name = INVALID_STRING_ID; LI->Pos.Line = 0; LI->Pos.Col = 0;