1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-23 19:29:37 +00:00

Fix warning about possibly uninitialized variable.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5331 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-12-27 22:45:20 +00:00
parent 7d187fe92c
commit 71b134db78

View File

@ -363,7 +363,7 @@ void DbgInfoSym (void)
int Type;
unsigned AsmName = EMPTY_STRING_ID;
unsigned Flags;
int Offs;
int Offs = 0;
HLLDbgSym* S;