From b3f2a6b35cec20e3761ef1b4c5032d9d16866377 Mon Sep 17 00:00:00 2001 From: cuz Date: Thu, 18 Oct 2001 21:45:37 +0000 Subject: [PATCH] Cosmetic change git-svn-id: svn://svn.cc65.org/cc65/trunk@1065 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cc65/coptind.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/cc65/coptind.c b/src/cc65/coptind.c index a61b36d12..838f82cde 100644 --- a/src/cc65/coptind.c +++ b/src/cc65/coptind.c @@ -1075,14 +1075,10 @@ unsigned OptBranchDist (CodeSeg* S) /* Change branches for the distance needed. */ { unsigned Changes = 0; - unsigned I; - - /* Get the number of entries, bail out if we have not enough */ - unsigned Count = CS_GetEntryCount (S); /* Walk over the entries */ - I = 0; - while (I < Count) { + unsigned I = 0; + while (I < CS_GetEntryCount (S)) { /* Get next entry */ CodeEntry* E = CS_GetEntry (S, I);