use iter.valid() and not iter.eol() (cosmetic)

This commit is contained in:
Jeff Hill
2000-06-27 23:07:01 +00:00
parent 45c116e750
commit 69162db301
3 changed files with 11 additions and 5 deletions

View File

@@ -212,7 +212,7 @@ void searchTimer::expire ()
* the end of the list
*/
firstChan = chan = this->iiu.chidList.first ();
while ( chan != chan.eol () ) {
while ( chan.valid () ) {
this->minRetry = min (this->minRetry, chan->retry);