From: Sascha Wildner Date: Sun, 24 Feb 2013 09:46:11 +0000 (+0100) Subject: ath(4): s/long long unsigned/unsigned long long/ X-Git-Tag: v3.4.0rc~215 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/b65c3d63dc9c126fcf8eb8f0b15ec6b59b746133 ath(4): s/long long unsigned/unsigned long long/ --- diff --git a/sys/dev/netif/ath/ath/if_ath.c b/sys/dev/netif/ath/ath/if_ath.c index c40aada982..9d215248f2 100644 --- a/sys/dev/netif/ath/ath/if_ath.c +++ b/sys/dev/netif/ath/ath/if_ath.c @@ -2678,7 +2678,7 @@ ath_beacon_alloc(struct ath_softc *sc, struct ieee80211_node *ni) "%s: %s beacons bslot %d intval %u tsfadjust %llu\n", __func__, sc->sc_stagbeacons ? "stagger" : "burst", avp->av_bslot, ni->ni_intval, - (long long unsigned) le64toh(tsfadjust)); + (unsigned long long) le64toh(tsfadjust)); wh = mtod(m, struct ieee80211_frame *); memcpy(&wh[1], &tsfadjust, sizeof(tsfadjust));