aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/timer.c
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2010-08-19 16:24:13 +0100
committerKeir Fraser <keir.fraser@citrix.com>2010-08-19 16:24:13 +0100
commit90d0bd9ffbbe52504cd311183aeddc90a2962d4f (patch)
tree9acff5fa9ab996e9d133c7ac5890442beacd3d2a /xen/common/timer.c
parent2035f2836f21fff0008d355979a0f75b55c42242 (diff)
downloadxen-90d0bd9ffbbe52504cd311183aeddc90a2962d4f.tar.gz
xen-90d0bd9ffbbe52504cd311183aeddc90a2962d4f.tar.bz2
xen-90d0bd9ffbbe52504cd311183aeddc90a2962d4f.zip
timers: Fix printk format specifier
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'xen/common/timer.c')
-rw-r--r--xen/common/timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/common/timer.c b/xen/common/timer.c
index 648f299dfd..305b5fa2ef 100644
--- a/xen/common/timer.c
+++ b/xen/common/timer.c
@@ -499,7 +499,7 @@ s_time_t align_timer(s_time_t firsttick, uint64_t period)
static void dump_timer(struct timer *t, s_time_t now)
{
- printk(" ex=%8ldus timer=%p cb=%p(%p)",
+ printk(" ex=%8"PRId64"us timer=%p cb=%p(%p)",
(t->expires - now) / 1000, t, t->function, t->data);
print_symbol(" %s\n", (unsigned long)t->function);
}