svn commit: r284863 - head/sys/net/altq
Bjoern A. Zeeb
bz at FreeBSD.org
Thu Jun 25 23:16:02 UTC 2015
Author: bz
Date: Thu Jun 25 23:16:01 2015
New Revision: 284863
URL: https://svnweb.freebsd.org/changeset/base/284863
Log:
Another attempt to make this compile on more architectures after r284777.
Modified:
head/sys/net/altq/altq_fairq.c
Modified: head/sys/net/altq/altq_fairq.c
==============================================================================
--- head/sys/net/altq/altq_fairq.c Thu Jun 25 20:46:11 2015 (r284862)
+++ head/sys/net/altq/altq_fairq.c Thu Jun 25 23:16:01 2015 (r284863)
@@ -742,8 +742,8 @@ fairq_pollq(struct fairq_class *cl, uint
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);
More information about the svn-src-all
mailing list