summaryrefslogtreecommitdiffstats
path: root/sbin/fsck/preen.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2000-12-30 21:05:45 +0000
committerphk <phk@FreeBSD.org>2000-12-30 21:05:45 +0000
commit012b3e6f2040d83c0336346be7483454fa3924e0 (patch)
treedaac72cf76064b2b74b3bedf2cb122ce5c819912 /sbin/fsck/preen.c
parent7fd96a9db33fa7d84ed0b1bc4e57a4d42268145a (diff)
downloadFreeBSD-src-012b3e6f2040d83c0336346be7483454fa3924e0.zip
FreeBSD-src-012b3e6f2040d83c0336346be7483454fa3924e0.tar.gz
Use macro API to <sys/queue.h>
Submitted by: "Peter Avalos" <pavalos@theshell.com> Reviewed by: /sbin/md5
Diffstat (limited to 'sbin/fsck/preen.c')
-rw-r--r--sbin/fsck/preen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/fsck/preen.c b/sbin/fsck/preen.c
index e00e84e..3beda3e 100644
--- a/sbin/fsck/preen.c
+++ b/sbin/fsck/preen.c
@@ -230,7 +230,7 @@ checkfstab(flags, maxrun, docheck, checkit)
}
}
if (sumstatus) {
- p = badh.tqh_first;
+ p = TAILQ_FIRST(&badh);
if (p == NULL)
return (sumstatus);
@@ -334,7 +334,7 @@ startdisk(d, checkit)
int (*checkit) __P((const char *, const char *, const char *, void *,
pid_t *));
{
- struct partentry *p = d->d_part.tqh_first;
+ struct partentry *p = TAILQ_FIRST(&d->d_part);
int rv;
while ((rv = (*checkit)(p->p_type, p->p_devname, p->p_mntpt,
OpenPOWER on IntegriCloud