From a87af205c7016c70f242cf46921bec681d036d61 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 27 Jun 2000 23:42:39 +0000 Subject: [PATCH] use iter.valid() and not iter.eol() (cosmetic) --- src/db/dbChannelIO.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db/dbChannelIO.cpp b/src/db/dbChannelIO.cpp index 431daaf2b..205b1a77a 100644 --- a/src/db/dbChannelIO.cpp +++ b/src/db/dbChannelIO.cpp @@ -50,7 +50,7 @@ dbChannelIO::~dbChannelIO () * remove any subscriptions attached to this channel */ tsDLIterBD iter = this->eventq.first (); - while ( iter != iter.eol () ) { + while ( iter.valid () ) { tsDLIterBD next = iter.itemAfter (); iter->destroy (); iter = next;