aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/sched_sedf.c
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-03-15 12:40:42 +0100
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-03-15 12:40:42 +0100
commit2cc7ae652df9e288dc0aaaaa4c3a0601995500e1 (patch)
tree69ee7b31d4d5755ed947d9eaee836aa3e7cbcdac /xen/common/sched_sedf.c
parentba07c577c626791368d89076781ad94954ca88a0 (diff)
downloadxen-2cc7ae652df9e288dc0aaaaa4c3a0601995500e1.tar.gz
xen-2cc7ae652df9e288dc0aaaaa4c3a0601995500e1.tar.bz2
xen-2cc7ae652df9e288dc0aaaaa4c3a0601995500e1.zip
Fix 64-bit build.
Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/common/sched_sedf.c')
-rw-r--r--xen/common/sched_sedf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/xen/common/sched_sedf.c b/xen/common/sched_sedf.c
index 87f9f6ab00..2fa363ba24 100644
--- a/xen/common/sched_sedf.c
+++ b/xen/common/sched_sedf.c
@@ -586,7 +586,8 @@ static void update_queues(
DIV_UP(now - curinf->deadl_abs,
curinf->period) * curinf->period;
if (unlikely(curinf->deadl_abs < now))
- printk("Fatal scheduler error: %lld %lld %lld diff=%lld\n",
+ printk("Fatal scheduler error: %"PRIu64" %"PRIu64" %"PRIu64
+ " diff=%"PRIu64"\n",
curinf->deadl_abs, now, curinf->period,
now - curinf->deadl_abs);
ASSERT(curinf->deadl_abs >= now);