summaryrefslogtreecommitdiff
path: root/xen/store.c
diff options
context:
space:
mode:
Diffstat (limited to 'xen/store.c')
-rw-r--r--xen/store.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/store.c b/xen/store.c
index 659a70c7..23cbc223 100644
--- a/xen/store.c
+++ b/xen/store.c
@@ -62,7 +62,7 @@ static void store_put(hyp_store_transaction_t t, uint32_t type, struct store_req
totlen += sizeof(head);
if (totlen > sizeof(store->req) - 1)
- panic("too big store message %d, max %d", totlen, sizeof(store->req));
+ panic("too big store message %d, max %d", totlen, (int) sizeof(store->req));
while (hyp_ring_available(store->req, store->req_prod, store->req_cons) < totlen)
hyp_yield();