Fixed some sloopy StrBuf coding.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4343 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2009-10-08 10:51:45 +00:00
parent 4b4a9b444b
commit 9971b645a5
2 changed files with 3 additions and 3 deletions

View File

@@ -67,7 +67,7 @@ TokNode* NewTokNode (void)
T->Tok = Tok;
T->WS = WS;
T->IVal = IVal;
T->SVal = AUTO_STRBUF_INITIALIZER;
SB_Init (&T->SVal);
SB_Copy (&T->SVal, &SVal);
/* Return the node */