]> git.sur5r.net Git - cc65/commitdiff
Cosmetic change
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 18 Oct 2001 21:45:37 +0000 (21:45 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 18 Oct 2001 21:45:37 +0000 (21:45 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1065 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/coptind.c

index a61b36d12d76e2de47e7da195d295bf56b08ad03..838f82cdea95600d08dd340509d4df76fa04a28c 100644 (file)
@@ -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);