mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 17:30:50 +00:00
Forgot a cast, sorry
This commit is contained in:
parent
56c96e8ab0
commit
41e449b306
@ -671,7 +671,7 @@ DefOrRef* AddDefOrRef (SymEntry* E, unsigned Flags)
|
||||
DOR = xmalloc (sizeof (DefOrRef));
|
||||
CollAppend (E->V.L.DefsOrRefs, DOR);
|
||||
DOR->Line = GetCurrentLine ();
|
||||
DOR->LocalsBlockId = CollLast (&CurrentFunc->LocalsBlockStack);
|
||||
DOR->LocalsBlockId = (long)CollLast (&CurrentFunc->LocalsBlockStack);
|
||||
DOR->Flags = Flags;
|
||||
DOR->StackPtr = StackPtr;
|
||||
DOR->Depth = CollCount (&CurrentFunc->LocalsBlockStack);
|
||||
|
Loading…
x
Reference in New Issue
Block a user