git: 94e75f5e29b6 - stable/13 - 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:53:11 UTC
The branch stable/13 has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=94e75f5e29b645e351cec7ec287aef5b48762fd9
commit 94e75f5e29b645e351cec7ec287aef5b48762fd9
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:52:38 +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 ffd5cb7a9899..0c5690db74ef 100644
--- a/sys/net/if_llatbl.c
+++ b/sys/net/if_llatbl.c
@@ -705,7 +705,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);