]> git.sur5r.net Git - cc65/blobdiff - src/cc65/coptind.c
Fixed a problem introduced with the last change.
[cc65] / src / cc65 / coptind.c
index d8446b8928c558e7d748f987d5d06ed8c5898dd6..c8a1061ac03ec1803339e9eb32382d06a86be1f8 100644 (file)
@@ -831,7 +831,7 @@ unsigned OptJumpTarget3 (CodeSeg* S)
                  * eventually remove a reference in the loop, we must loop
                  * from end down to start.
                  */
-                for (K = CL_GetRefCount (L) - 1; K >= 0; ++K) {
+                for (K = CL_GetRefCount (L) - 1; K >= 0; --K) {
 
                     /* Get the entry that jumps here */
                     CodeEntry* Jump = CL_GetRef (L, K);