Another attempt to make this compile on more architectures after r284777.

This commit is contained in:
Bjoern A. Zeeb 2015-06-25 23:16:01 +00:00
parent ac89815f46
commit 9656119da4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=284863

View File

@ -742,8 +742,8 @@ fairq_pollq(struct fairq_class *cl, uint64_t cur_time, int *hit_limit)
if (bw > cl->cl_bandwidth)
*hit_limit = 1;
#ifdef ALTQ_DEBUG
printf("BW %6lld relative to %6u %d queue %p\n",
bw, cl->cl_bandwidth, *hit_limit, b);
printf("BW %6ju relative to %6u %d queue %p\n",
(uintmax_t)bw, cl->cl_bandwidth, *hit_limit, b);
#endif
}
return(m);