git: b4c94968d1bd - main - if_llatbl: Fix a typo in a KASSERT message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 20 Jan 2024 20:00:37 UTC
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);