git: 44784993a6fb - stable/14 - if_llatbl: Fix a typo in a KASSERT message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 25 Jan 2024 06:48:32 UTC
The branch stable/14 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=44784993a6fb3bdc7654036080e3bdfe2c0668f0 commit 44784993a6fb3bdc7654036080e3bdfe2c0668f0 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2024-01-20 20:00:22 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2024-01-25 06:47:31 +0000 if_llatbl: Fix a typo in a KASSERT message - s/entires/entries/ (cherry picked from commit b4c94968d1bd1ffdd43976b0315e2b6c2b620ee2) --- 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 ef4f27dbb00c..e79f781e7801 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);