summaryrefslogtreecommitdiffstats
path: root/contrib/bind/lib/isc/ev_waits.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/bind/lib/isc/ev_waits.c')
-rw-r--r--contrib/bind/lib/isc/ev_waits.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/contrib/bind/lib/isc/ev_waits.c b/contrib/bind/lib/isc/ev_waits.c
index e7bfbf7..9608424 100644
--- a/contrib/bind/lib/isc/ev_waits.c
+++ b/contrib/bind/lib/isc/ev_waits.c
@@ -20,7 +20,7 @@
*/
#if !defined(LINT) && !defined(CODECENTER)
-static const char rcsid[] = "$Id: ev_waits.c,v 8.10 2000/02/04 07:25:50 vixie Exp $";
+static const char rcsid[] = "$Id: ev_waits.c,v 8.11 2000/07/20 18:17:52 vixie Exp $";
#endif
#include "port_before.h"
@@ -49,7 +49,7 @@ static evWaitList * evGetWaitList(evContext_p *, const void *, int);
*/
int
evWaitFor(evContext opaqueCtx, const void *tag,
- evWaitFunc func, void *uap, evWaitID *id)
+ evWaitFunc func, void *uap, evWaitID *id)
{
evContext_p *ctx = opaqueCtx.opaque;
evWait *new;
@@ -60,11 +60,10 @@ evWaitFor(evContext opaqueCtx, const void *tag,
new->uap = uap;
new->tag = tag;
new->next = NULL;
- if (wl->last != NULL) {
+ if (wl->last != NULL)
wl->last->next = new;
- } else {
+ else
wl->first = new;
- }
wl->last = new;
if (id != NULL)
id->opaque = new;
OpenPOWER on IntegriCloud