PERFORCE change 149945 for review

Sam Leffler sam at FreeBSD.org
Wed Sep 17 18:39:26 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=149945

Change 149945 by sam at sam_ebb on 2008/09/17 18:39:07

	fix compiler warning on amd64; not sure why it didn't show up before

Affected files ...

.. //depot/projects/vap/sys/dev/ath/if_ath.c#93 edit

Differences ...

==== //depot/projects/vap/sys/dev/ath/if_ath.c#93 (text+ko) ====

@@ -2882,7 +2882,8 @@
 		DPRINTF(sc, ATH_DEBUG_BEACON,
 		    "%s: %s beacons bslot %d intval %u tsfadjust %llu\n",
 		    __func__, sc->sc_stagbeacons ? "stagger" : "burst",
-		    avp->av_bslot, ni->ni_intval, le64toh(tsfadjust));
+		    avp->av_bslot, ni->ni_intval,
+		    (long long unsigned) le64toh(tsfadjust));
 
 		wh = mtod(m, struct ieee80211_frame *);
 		memcpy(&wh[1], &tsfadjust, sizeof(tsfadjust));


More information about the p4-projects mailing list