From 6029e6933cddb4d1b46d636b5fa2a26573f04d46 Mon Sep 17 00:00:00 2001 From: Jonathan Lemon Date: Wed, 28 Feb 2001 16:16:31 +0000 Subject: [PATCH] Use EV_SET() macro to initialize kevent structure. --- usr.bin/tail/forward.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/usr.bin/tail/forward.c b/usr.bin/tail/forward.c index a80a22ab2231..e25e0d60a749 100644 --- a/usr.bin/tail/forward.c +++ b/usr.bin/tail/forward.c @@ -198,15 +198,13 @@ forward(fp, style, off, sbp) struct timespec ts = { 0, 0 }; if (Fflag && fileno(fp) != STDIN_FILENO) { - ev[n].ident = fileno(fp); - ev[n].filter = EVFILT_VNODE; - ev[n].flags = EV_ADD | EV_ENABLE | EV_CLEAR; - ev[n].fflags = NOTE_DELETE | NOTE_RENAME; + EV_SET(&ev[n], fileno(fp), EVFILT_VNODE, + EV_ADD | EV_ENABLE | EV_CLEAR, + NOTE_DELETE | NOTE_RENAME, 0, 0); n++; } - ev[n].ident = fileno(fp); - ev[n].filter = EVFILT_READ; - ev[n].flags = EV_ADD | EV_ENABLE; + EV_SET(&ev[n], fileno(fp), EVFILT_READ, + EV_ADD | EV_ENABLE, 0, 0, 0); n++; if (kevent(kq, ev, n, NULL, 0, &ts) < 0) {