1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-02-02 17:08:56 +00:00

Fixing kernel build on amd64 machines.

Reviewed by:	sam (mentor)
This commit is contained in:
Tai-hwa Liang 2005-03-30 02:33:33 +00:00
parent 03ed599a2a
commit 33d7d80c82
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=144315

View File

@ -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);
}
}