summaryrefslogtreecommitdiff
path: root/xen/evt.c
diff options
context:
space:
mode:
Diffstat (limited to 'xen/evt.c')
-rw-r--r--xen/evt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/evt.c b/xen/evt.c
index ae7e5d7a..296101aa 100644
--- a/xen/evt.c
+++ b/xen/evt.c
@@ -106,7 +106,7 @@ void hyp_intrinit() {
void hyp_evt_handler(evtchn_port_t port, void (*handler)(), int unit, spl_t spl) {
if (port > NEVNT)
- panic("event channel port %d > %d not supported\n", port, NEVNT);
+ panic("event channel port %d > %d not supported\n", port, (int) NEVNT);
intpri[port] = spl;
iunit[port] = unit;
form_int_mask();