1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-05 09:14:03 +00:00

len must be int, not size_t

Submitted by:	novel
This commit is contained in:
Rui Paulo 2010-01-06 13:13:14 +00:00
parent 12255fe0d9
commit 7edea21b22
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=201644

View File

@ -2243,7 +2243,7 @@ ndis_media_status(struct ifnet *ifp, struct ifmediareq *imr)
struct ieee80211vap *vap = ifp->if_softc;
struct ndis_softc *sc = vap->iv_ic->ic_ifp->if_softc;
uint32_t txrate;
size_t len;
int len;
if (!NDIS_INITIALIZED(sc))
return;