mirror of
https://github.com/cc65/cc65.git
synced 2024-12-27 15:29:46 +00:00
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
@ -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…
Reference in New Issue
Block a user