From b4c94968d1bd1ffdd43976b0315e2b6c2b620ee2 Mon Sep 17 00:00:00 2001 From: Gordon Bergling Date: Sat, 20 Jan 2024 21:00:22 +0100 Subject: [PATCH] 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);