Cosmetic change
git-svn-id: svn://svn.cc65.org/cc65/trunk@1065 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
92a4c51753
commit
b3f2a6b35c
1 changed files with 2 additions and 6 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue