diff options
author | sam <sam@FreeBSD.org> | 2009-03-15 01:38:37 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2009-03-15 01:38:37 +0000 |
commit | 05a3fc25cf422a1ed90c9458131e1dbb4b1bccbb (patch) | |
tree | f6d1a0a62e9d24a2c6c61b47bc9ffdab32b4c4ca /contrib/wpa | |
parent | 723e44888d61f58cb4ce33cd258b0f3987fa3ad4 (diff) | |
download | FreeBSD-src-05a3fc25cf422a1ed90c9458131e1dbb4b1bccbb.zip FreeBSD-src-05a3fc25cf422a1ed90c9458131e1dbb4b1bccbb.tar.gz |
remove gcc-ism; tsinfo isn't used anyway
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); |