From 4bd08d898b47ef4527bb7104cc85f44229b1e184 Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Thu, 5 Aug 1993 05:37:10 +0000 Subject: [PATCH] changed lstLib stuff to ellLib --- src/db/dbEvent.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/db/dbEvent.c b/src/db/dbEvent.c index 091d55209..6f5718afa 100644 --- a/src/db/dbEvent.c +++ b/src/db/dbEvent.c @@ -69,7 +69,7 @@ #include #include #include -#include +#include #include #include #include @@ -316,7 +316,7 @@ struct event_block *pevent /* ptr to event blk (not required) */ pevent->valque = FALSE; LOCKREC(precord); - lstAdd((LIST*)&precord->mlis, (NODE*)pevent); + ellAdd((ELLLIST*)&precord->mlis, (ELLNODE*)pevent); UNLOCKREC(precord); return OK; @@ -346,9 +346,9 @@ int db_cancel_event(struct event_block *pevent) LOCKREC(precord); /* dont let a misplaced event corrupt the queue */ - status = lstFind((LIST*)&precord->mlis, (NODE*)pevent); + status = ellFind((ELLLIST*)&precord->mlis, (ELLNODE*)pevent); if(status!=ERROR) - lstDelete((LIST*)&precord->mlis, (NODE*)pevent); + ellDelete((ELLLIST*)&precord->mlis, (ELLNODE*)pevent); UNLOCKREC(precord); if(status == ERROR) return ERROR;