Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 11 Mar 2007 06:23:02 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 115695 for review
Message-ID:  <200703110623.l2B6N2RX071465@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=115695

Change 115695 by sam@sam_ebb on 2007/03/11 06:22:28

	sync w/ head

Affected files ...

.. //depot/projects/wifi/sys/net80211/ieee80211.c#43 edit

Differences ...

==== //depot/projects/wifi/sys/net80211/ieee80211.c#43 (text+ko) ====

@@ -303,7 +303,7 @@
 static __inline int
 mappsb(u_int freq, u_int flags)
 {
-	return 37 + ((freq * 10) + (((freq % 5) == 2) ? 5 : 0) - 49400) / 5;
+	return 37 + ((freq * 10) + ((freq % 5) == 2 ? 5 : 0) - 49400) / 5;
 }
 
 /*



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200703110623.l2B6N2RX071465>