diff options
Diffstat (limited to 'contrib/wpa')
-rw-r--r-- | contrib/wpa/hostapd/wme.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/wpa/hostapd/wme.h b/contrib/wpa/hostapd/wme.h index 4ee281a..3c80c01 100644 --- a/contrib/wpa/hostapd/wme.h +++ b/contrib/wpa/hostapd/wme.h @@ -27,7 +27,7 @@ * defined(__DragonFly__) */ -extern inline u16 tsinfo(int tag1d, int contention_based, int direction) +static inline u16 tsinfo(int tag1d, int contention_based, int direction) { return (tag1d << 11) | (contention_based << 7) | (direction << 5) | (tag1d << 1); |