diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2016-05-11 20:04:58 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2016-05-11 20:04:58 -0700 |
commit | 9e4d24aa5d354eafee0d4832c6d1949afe5b8ac4 (patch) | |
tree | 0b5e1a8478199d3371a18c64cc78147bb18662ef /src/opt/fxch | |
parent | c5befad5181e38e29aeeefb27f0e0d93717946f4 (diff) | |
download | abc-9e4d24aa5d354eafee0d4832c6d1949afe5b8ac4.tar.gz abc-9e4d24aa5d354eafee0d4832c6d1949afe5b8ac4.tar.bz2 abc-9e4d24aa5d354eafee0d4832c6d1949afe5b8ac4.zip |
Cosmetic changes after incorporating new code of 'fxch'.
Diffstat (limited to 'src/opt/fxch')
-rw-r--r-- | src/opt/fxch/FxchSCHashTable.c | 2 |
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; |