1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

if_llatbl: Fix a typo in a KASSERT message

- s/entires/entries/

(cherry picked from commit b4c94968d1)
This commit is contained in:
Gordon Bergling 2024-01-20 21:00:22 +01:00
parent 774644887a
commit 94e75f5e29

View File

@ -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);