From: Alex Bennée Date: Wed, 16 Jan 2019 12:13:50 +0000 (+0000) Subject: hw/block/xen: use proper format string for printing sectors X-Git-Tag: v4.0.0-rc0~156 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cce871c504694cf1034adf525556e3ca3c7eebb6;p=thirdparty%2Fqemu.git hw/block/xen: use proper format string for printing sectors The %lu format string is different depending on the host architecture which causes builds like the debian-armhf-cross build to fail. Use the correct PRi64 format string. Signed-off-by: Alex Bennée Reviewed-by: Paul Durrant Reviewed-by: Philippe Mathieu-Daudé Message-id: 20190116121350.23863-1-alex.bennee@linaro.org Signed-off-by: Peter Maydell --- diff --git a/hw/block/xen-block.c b/hw/block/xen-block.c index be28b63442b..a636487b3e8 100644 --- a/hw/block/xen-block.c +++ b/hw/block/xen-block.c @@ -215,7 +215,7 @@ static void xen_block_realize(XenDevice *xendev, Error **errp) xen_device_backend_printf(xendev, "sector-size", "%u", conf->logical_block_size); - xen_device_backend_printf(xendev, "sectors", "%lu", + xen_device_backend_printf(xendev, "sectors", "%"PRIi64, blk_getlength(conf->blk) / conf->logical_block_size);