Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 Sep 2008 18:39:20 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 149945 for review
Message-ID:  <200809171839.m8HIdKw5023109@repoman.freebsd.org>

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

Change 149945 by sam@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));



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