aboutsummaryrefslogtreecommitdiff
path: root/sys/net
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2015-06-25 23:16:01 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2015-06-25 23:16:01 +0000
commit9656119da41b7e0d9149c6985a4a357bd1f27c7e (patch)
tree474364b0479837026567b6c1ec805d002fe92d50 /sys/net
parentac89815f466ba3463e86e076dbce71811da46969 (diff)
downloadsrc-9656119da41b7e0d9149c6985a4a357bd1f27c7e.tar.gz
src-9656119da41b7e0d9149c6985a4a357bd1f27c7e.zip
Another attempt to make this compile on more architectures after r284777.
Notes
Notes: svn path=/head/; revision=284863
Diffstat (limited to 'sys/net')
-rw-r--r--sys/net/altq/altq_fairq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/altq/altq_fairq.c b/sys/net/altq/altq_fairq.c
index de00685841ab..f7ea8e7689e1 100644
--- a/sys/net/altq/altq_fairq.c
+++ b/sys/net/altq/altq_fairq.c
@@ -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);