summaryrefslogtreecommitdiffstats
path: root/src/opt
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2016-05-11 20:04:58 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2016-05-11 20:04:58 -0700
commit9e4d24aa5d354eafee0d4832c6d1949afe5b8ac4 (patch)
tree0b5e1a8478199d3371a18c64cc78147bb18662ef /src/opt
parentc5befad5181e38e29aeeefb27f0e0d93717946f4 (diff)
downloadabc-9e4d24aa5d354eafee0d4832c6d1949afe5b8ac4.tar.gz
abc-9e4d24aa5d354eafee0d4832c6d1949afe5b8ac4.tar.bz2
abc-9e4d24aa5d354eafee0d4832c6d1949afe5b8ac4.zip
Cosmetic changes after incorporating new code of 'fxch'.
Diffstat (limited to 'src/opt')
-rw-r--r--src/opt/fxch/FxchSCHashTable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opt/fxch/FxchSCHashTable.c b/src/opt/fxch/FxchSCHashTable.c
index 53205b5e..d26c8266 100644
--- a/src/opt/fxch/FxchSCHashTable.c
+++ b/src/opt/fxch/FxchSCHashTable.c
@@ -343,7 +343,7 @@ int Fxch_SCHashTableRemove( Fxch_SCHashTable_t* pSCHashTable,
return 0;
}
- for ( (int)iNextEntry = pEntry->iNext; iNextEntry != (int)iEntry; iNextEntry = pNextEntry->iNext, fStart = 0 )
+ for ( iNextEntry = (int)pEntry->iNext; iNextEntry != (int)iEntry; iNextEntry = pNextEntry->iNext, fStart = 0 )
{
int Base,
iDiv;