Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 20 Jan 2024 20:00:37 GMT
From:      Gordon Bergling <gbe@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: b4c94968d1bd - main - if_llatbl: Fix a typo in a KASSERT message
Message-ID:  <202401202000.40KK0b28099519@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by gbe:

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

commit b4c94968d1bd1ffdd43976b0315e2b6c2b620ee2
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2024-01-20 20:00:22 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2024-01-20 20:00:22 +0000

    if_llatbl: Fix a typo in a KASSERT message
    
    - s/entires/entries/
    
    MFC after:      5 days
---
 sys/net/if_llatbl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/net/if_llatbl.c b/sys/net/if_llatbl.c
index fe5273cf19c0..f6bfeff8a9b0 100644
--- a/sys/net/if_llatbl.c
+++ b/sys/net/if_llatbl.c
@@ -706,7 +706,7 @@ lltable_free(struct lltable *llt)
 		llentry_free(lle);
 	}
 
-	KASSERT(llt->llt_entries == 0, ("%s: lltable %p (%s) entires not 0: %d",
+	KASSERT(llt->llt_entries == 0, ("%s: lltable %p (%s) entries not 0: %d",
 	    __func__, llt, llt->llt_ifp->if_xname, llt->llt_entries));
 
 	llt->llt_free_tbl(llt);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202401202000.40KK0b28099519>