From: Stefan Weil Date: Thu, 12 Apr 2012 20:30:16 +0000 (+0200) Subject: nbd: Fix compiler warning (w64) X-Git-Tag: v1.1-rc0~97^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0fee8f342884e96b29d7df28475d0c485a317d54;p=thirdparty%2Fqemu.git nbd: Fix compiler warning (w64) Portable printing of dev_offset (data type off_t) needs a type cast. Signed-off-by: Stefan Weil --- diff --git a/nbd.c b/nbd.c index 567e94e27a6..406e555bc69 100644 --- a/nbd.c +++ b/nbd.c @@ -813,7 +813,7 @@ static void nbd_trip(void *opaque) LOG("From: %" PRIu64 ", Len: %u, Size: %" PRIu64 ", Offset: %" PRIu64 "\n", request.from, request.len, - (uint64_t)exp->size, exp->dev_offset); + (uint64_t)exp->size, (uint64_t)exp->dev_offset); LOG("requested operation past EOF--bad client?"); goto invalid_request; }