summaryrefslogtreecommitdiff
path: root/nbd
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2016-06-17 13:42:11 +0100
committerPeter Maydell <peter.maydell@linaro.org>2016-06-17 15:05:55 +0100
commitd121fcdf4520ed59c817d7f2846128a89772d497 (patch)
tree417141c1720320b5428f07e1b8555b17c904b2dd /nbd
parent98b5b7422fe1813040b499a4be415a9f514f1c10 (diff)
downloadqemu-d121fcdf4520ed59c817d7f2846128a89772d497.tar.gz
nbd/client.c: Correct trace format string
The trace format string in nbd_send_request uses PRIu16 for request->type, but request->type is a uint32_t. This provokes compiler warnings on the OSX clang. Use PRIu32 instead. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 1466167331-17063-1-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'nbd')
-rw-r--r--nbd/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nbd/client.c b/nbd/client.c
index 287487c6c2..78a7195c45 100644
--- a/nbd/client.c
+++ b/nbd/client.c
@@ -711,7 +711,7 @@ ssize_t nbd_send_request(QIOChannel *ioc, struct nbd_request *request)
TRACE("Sending request to server: "
"{ .from = %" PRIu64", .len = %" PRIu32 ", .handle = %" PRIu64
- ", .type=%" PRIu16 " }",
+ ", .type=%" PRIu32 " }",
request->from, request->len, request->handle, request->type);
stl_be_p(buf, NBD_REQUEST_MAGIC);