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

@@ -36,7 +36,7 @@ cacLocalChannelIO * cacServiceList::createChannelIO (const char *pName, cacChann
this->lock ();
tsDLIterBD <cacServiceIO> iter ( this->services.first () );
while ( iter != iter.eol () ) {
while ( iter.valid () ) {
pChanIO = iter->createChannelIO ( chan, pName );
if ( pChanIO ) {
break;