diff options
| author | Tai-hwa Liang <avatar@FreeBSD.org> | 2005-03-30 02:33:33 +0000 |
|---|---|---|
| committer | Tai-hwa Liang <avatar@FreeBSD.org> | 2005-03-30 02:33:33 +0000 |
| commit | 33d7d80c82560839ddc43049231309a0e8b93ec4 (patch) | |
| tree | 8c08bb3675166a2ff4e0f9873e9fd0e36da99907 /sys/dev/ath | |
| parent | 03ed599a2a06ebe5ec4ffd3d5f51147c082b814d (diff) | |
Notes
Diffstat (limited to 'sys/dev/ath')
| -rw-r--r-- | sys/dev/ath/if_ath.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ath/if_ath.c b/sys/dev/ath/if_ath.c index 04121e684400b..a51c053591300 100644 --- a/sys/dev/ath/if_ath.c +++ b/sys/dev/ath/if_ath.c @@ -2469,9 +2469,9 @@ ath_recv_mgmt(struct ieee80211com *ic, struct mbuf *m, */ if (le64toh(ni->ni_tstamp.tsf) >= tsf) { DPRINTF(sc, ATH_DEBUG_STATE, - "ibss merge, rstamp %u tsf %llu " - "tstamp %llu\n", rstamp, tsf, - ni->ni_tstamp.tsf); + "ibss merge, rstamp %u tsf %ju " + "tstamp %ju\n", rstamp, (uintmax_t)tsf, + (uintmax_t)ni->ni_tstamp.tsf); (void) ieee80211_ibss_merge(ic, ni); } } |
