debuggers.hg
changeset 22090:60746a2c14a6
timers: Fix printk format specifier
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Thu Aug 19 16:24:13 2010 +0100 (2010-08-19) |
parents | 88f4d10e0508 |
children | 2940165380de |
files | xen/common/timer.c |
line diff
1.1 --- a/xen/common/timer.c Thu Aug 19 15:33:43 2010 +0100 1.2 +++ b/xen/common/timer.c Thu Aug 19 16:24:13 2010 +0100 1.3 @@ -499,7 +499,7 @@ s_time_t align_timer(s_time_t firsttick, 1.4 1.5 static void dump_timer(struct timer *t, s_time_t now) 1.6 { 1.7 - printk(" ex=%8ldus timer=%p cb=%p(%p)", 1.8 + printk(" ex=%8"PRId64"us timer=%p cb=%p(%p)", 1.9 (t->expires - now) / 1000, t, t->function, t->data); 1.10 print_symbol(" %s\n", (unsigned long)t->function); 1.11 }