diff options
| author | Mateusz Guzik <mjg@FreeBSD.org> | 2025-10-06 19:21:38 +0000 |
|---|---|---|
| committer | Mateusz Guzik <mjg@FreeBSD.org> | 2025-10-06 19:22:29 +0000 |
| commit | 0ecbc335daa8caac8b5952d83e821533c99de6ea (patch) | |
| tree | 81f426cf098a5b9d544f7cdff7574b6a01f87dfe | |
| parent | 2ba20004ef7649db7654520e8376927c4410d9c3 (diff) | |
nullfs: fix up build with INVARIANTS after previous
| -rw-r--r-- | sys/fs/nullfs/null_subr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/nullfs/null_subr.c b/sys/fs/nullfs/null_subr.c index bb0ff9966dfd..d7f847d449d0 100644 --- a/sys/fs/nullfs/null_subr.c +++ b/sys/fs/nullfs/null_subr.c @@ -181,7 +181,7 @@ null_hashins(struct mount *mp, struct null_node *xp) hd = NULL_NHASH(xp->null_lowervp); #ifdef INVARIANTS - CK_LIST_FOREACH(oxp, hd, null_hash) { + CK_SLIST_FOREACH(oxp, hd, null_hash) { if (oxp->null_lowervp == xp->null_lowervp && NULLTOV(oxp)->v_mount == mp) { VNASSERT(0, NULLTOV(oxp), |
