mirror of https://github.com/xqemu/xqemu.git
nbd: Fix compiler warning (w64)
Portable printing of dev_offset (data type off_t) needs a type cast. Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
b0b0f1c964
commit
0fee8f3428
2
nbd.c
2
nbd.c
|
@ -813,7 +813,7 @@ static void nbd_trip(void *opaque)
|
||||||
LOG("From: %" PRIu64 ", Len: %u, Size: %" PRIu64
|
LOG("From: %" PRIu64 ", Len: %u, Size: %" PRIu64
|
||||||
", Offset: %" PRIu64 "\n",
|
", Offset: %" PRIu64 "\n",
|
||||||
request.from, request.len,
|
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?");
|
LOG("requested operation past EOF--bad client?");
|
||||||
goto invalid_request;
|
goto invalid_request;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue