svn commit: r244189 - projects/calloutng/sys/kern
Alexander Motin
mav at FreeBSD.org
Thu Dec 13 19:29:45 UTC 2012
Author: mav
Date: Thu Dec 13 19:29:44 2012
New Revision: 244189
URL: http://svnweb.freebsd.org/changeset/base/244189
Log:
Fix build with KTR_CALLOUT enabled.
Modified:
projects/calloutng/sys/kern/kern_timeout.c
Modified: projects/calloutng/sys/kern/kern_timeout.c
==============================================================================
--- projects/calloutng/sys/kern/kern_timeout.c Thu Dec 13 17:39:07 2012 (r244188)
+++ projects/calloutng/sys/kern/kern_timeout.c Thu Dec 13 19:29:44 2012 (r244189)
@@ -585,7 +585,7 @@ callout_cc_add(struct callout *c, struct
c->c_time = to_bintime;
c->c_precision = precision;
CTR4(KTR_CALLOUT, "precision set for %p: %d.%08x%08x",
- c, c->precision.sec, (u_int) (c->c_precision.frac >> 32),
+ c, c->c_precision.sec, (u_int) (c->c_precision.frac >> 32),
(u_int) (c->c_precision.frac & 0xffffffff));
bucket = get_bucket(&c->c_time);
TAILQ_INSERT_TAIL(&cc->cc_callwheel[bucket], c, c_links.tqe);
More information about the svn-src-projects
mailing list