Author: sam Date: Sun Mar 15 01:38:37 2009 New Revision: 189841 URL: http://svn.freebsd.org/changeset/base/189841
Log: remove gcc-ism; tsinfo isn't used anyway Modified: head/contrib/wpa/hostapd/wme.h Modified: head/contrib/wpa/hostapd/wme.h ============================================================================== --- head/contrib/wpa/hostapd/wme.h Sat Mar 14 23:59:53 2009 (r189840) +++ head/contrib/wpa/hostapd/wme.h Sun Mar 15 01:38:37 2009 (r189841) @@ -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); _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"