>From 9fdcf62e2e0a42c30fb8ff040ce4b147ca89996b Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 28 May 2013 12:21:34 +0100 Subject: [PATCH] curl: Fix format string in debugging statement. Signed-off-by: Richard W.M. Jones --- block/curl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block/curl.c b/block/curl.c index 50c7188..3e330b6 100644 --- a/block/curl.c +++ b/block/curl.c @@ -208,7 +208,7 @@ static void curl_complete_io(BDRVCURLState *bs, CURLAIOCB *acb, qemu_iovec_from_buf(acb->qiov, 0, cache->data + off, aio_bytes); acb->common.cb(acb->common.opaque, 0); - DPRINTF("AIO Request OK: " PRId64 "%10zd\n", aio_base, aio_bytes); + DPRINTF("AIO Request OK: %" PRId64 "%10zd\n", aio_base, aio_bytes); qemu_aio_release(acb); acb = NULL; /* Move cache next in the list */ -- 1.8.2.1