From 0fee8f342884e96b29d7df28475d0c485a317d54 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Thu, 12 Apr 2012 22:30:16 +0200 Subject: nbd: Fix compiler warning (w64) Portable printing of dev_offset (data type off_t) needs a type cast. Signed-off-by: Stefan Weil --- nbd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nbd.c') diff --git a/nbd.c b/nbd.c index 567e94e27a..406e555bc6 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; } -- cgit v1.2.1