1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-29 02:55:20 +00:00

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
This commit is contained in:
uz 2011-08-18 11:57:57 +00:00
parent 11d46e93b2
commit 2abd77ffe5

View File

@ -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;