lltable: use sa_family_t instead of int for lltable.llt_af

Reviewed By: melifaro, #network
Differential Revision: https://reviews.freebsd.org/D35323
MFC after:	2 weeks
This commit is contained in:
KUROSAWA Takahiro 2022-05-30 07:36:52 +00:00 committed by Alexander V. Chernikov
parent 7468332f55
commit 3719dedb91

View File

@ -166,7 +166,8 @@ typedef int (llt_foreach_entry_t)(struct lltable *, llt_foreach_cb_t *, void *);
struct lltable {
SLIST_ENTRY(lltable) llt_link;
int llt_af;
sa_family_t llt_af;
uint8_t llt_spare[3];
int llt_hsize;
int llt_entries;
int llt_maxentries;