]> git.sur5r.net Git - cc65/commitdiff
Fixed a bug
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 28 Jul 2005 22:52:59 +0000 (22:52 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 28 Jul 2005 22:52:59 +0000 (22:52 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3557 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/cfgexpr.c

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