git: 0ecbc335daa8 - main - nullfs: fix up build with INVARIANTS after previous

From: Mateusz Guzik <mjg_at_FreeBSD.org>
Date: Mon, 06 Oct 2025 19:22:33 UTC
The branch main has been updated by mjg:

URL: https://cgit.FreeBSD.org/src/commit/?id=0ecbc335daa8caac8b5952d83e821533c99de6ea

commit 0ecbc335daa8caac8b5952d83e821533c99de6ea
Author:     Mateusz Guzik <mjg@FreeBSD.org>
AuthorDate: 2025-10-06 19:21:38 +0000
Commit:     Mateusz Guzik <mjg@FreeBSD.org>
CommitDate: 2025-10-06 19:22:29 +0000

    nullfs: fix up build with INVARIANTS after previous
---
 sys/fs/nullfs/null_subr.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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),