svn commit: r189841 - head/contrib/wpa/hostapd

Sam Leffler sam at FreeBSD.org
Sat Mar 14 18:38:37 PDT 2009


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);


More information about the svn-src-all mailing list