From aa1051802050e4b3f8e101d6829c1b31e1e67226 Mon Sep 17 00:00:00 2001 From: ben Date: Fri, 29 Dec 2000 18:04:54 +0000 Subject: Convert to use the macros rather than fiddling with the queue structure internals. Reviewed by: markm --- usr.sbin/pw/pw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/pw/pw.c') diff --git a/usr.sbin/pw/pw.c b/usr.sbin/pw/pw.c index ca3a10a..dd23df9 100644 --- a/usr.sbin/pw/pw.c +++ b/usr.sbin/pw/pw.c @@ -420,10 +420,10 @@ cmdhelp(int mode, int which) struct carg * getarg(struct cargs * _args, int ch) { - struct carg *c = _args->lh_first; + struct carg *c = LIST_FIRST(_args); while (c != NULL && c->ch != ch) - c = c->list.le_next; + c = LIST_NEXT(c, list); return c; } -- cgit v1.1