1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-13 09:31:53 +00:00

Fixed a bug

git-svn-id: svn://svn.cc65.org/cc65/trunk@3557 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2005-07-28 22:52:59 +00:00
parent aa7cdf30de
commit 33e86250ea

View File

@ -195,8 +195,9 @@ static void Term (CfgExpr* E)
CfgExpr RightSide = CFGEXPR_INITIALIZER; CfgExpr RightSide = CFGEXPR_INITIALIZER;
/* Remember the token */ /* Remember the token, then skip it */
cfgtok_t Tok = CfgTok; cfgtok_t Tok = CfgTok;
CfgNextTok ();
/* Left side must be an int */ /* Left side must be an int */
CE_AssureInt (E); CE_AssureInt (E);