aboutsummaryrefslogtreecommitdiff
path: root/sys/net80211/ieee80211_amrr.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/net80211/ieee80211_amrr.c')
-rw-r--r--sys/net80211/ieee80211_amrr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net80211/ieee80211_amrr.c b/sys/net80211/ieee80211_amrr.c
index b54fd2a62928..5b34768b4e6b 100644
--- a/sys/net80211/ieee80211_amrr.c
+++ b/sys/net80211/ieee80211_amrr.c
@@ -64,11 +64,11 @@ __FBSDID("$FreeBSD$");
void
ieee80211_amrr_init(struct ieee80211_amrr *amrr,
- struct ieee80211com *ic, int min, int max)
+ struct ieee80211com *ic, int amin, int amax)
{
/* XXX bounds check? */
- amrr->amrr_min_success_threshold = min;
- amrr->amrr_max_success_threshold = max;
+ amrr->amrr_min_success_threshold = amin;
+ amrr->amrr_max_success_threshold = amax;
amrr->amrr_ic = ic;
}