From b8b3dcce747381a150abf6a72bc67a0297c76f1b Mon Sep 17 00:00:00 2001 From: uz Date: Sat, 31 Oct 2009 14:01:22 +0000 Subject: [PATCH] Fixed a problem introduced with the last change. git-svn-id: svn://svn.cc65.org/cc65/trunk@4410 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cc65/coptind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cc65/coptind.c b/src/cc65/coptind.c index d8446b892..c8a1061ac 100644 --- a/src/cc65/coptind.c +++ b/src/cc65/coptind.c @@ -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);