nbd/client.c: Correct trace format string
authorPeter Maydell <peter.maydell@linaro.org>
Fri, 17 Jun 2016 12:42:11 +0000 (13:42 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Fri, 17 Jun 2016 14:05:55 +0000 (15:05 +0100)
commitd121fcdf4520ed59c817d7f2846128a89772d497
tree417141c1720320b5428f07e1b8555b17c904b2dd
parent98b5b7422fe1813040b499a4be415a9f514f1c10
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
nbd/client.c