aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorZhengui li <lizhengui@huawei.com>2020-10-19 14:23:46 +0000
committerAlex Williamson <alex.williamson@redhat.com>2020-11-01 12:30:52 -0700
commitc624b6b312680b76d2a19a4c65cfdb234e875e1b (patch)
tree013358a61ed60be398cfdbb445825630fbef6667 /hw
parent88eef59796f91271e3d288f64457e975dd7c8ac9 (diff)
downloadqemu-c624b6b312680b76d2a19a4c65cfdb234e875e1b.zip
qemu-c624b6b312680b76d2a19a4c65cfdb234e875e1b.tar.gz
qemu-c624b6b312680b76d2a19a4c65cfdb234e875e1b.tar.bz2
vfio: fix incorrect print type
The type of input variable is unsigned int while the printer type is int. So fix incorrect print type. Signed-off-by: Zhengui li <lizhengui@huawei.com> Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/vfio/common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/vfio/common.c b/hw/vfio/common.c
index 57f55f0..e18ea2c 100644
--- a/hw/vfio/common.c
+++ b/hw/vfio/common.c
@@ -205,7 +205,7 @@ void vfio_region_write(void *opaque, hwaddr addr,
buf.qword = cpu_to_le64(data);
break;
default:
- hw_error("vfio: unsupported write size, %d bytes", size);
+ hw_error("vfio: unsupported write size, %u bytes", size);
break;
}
@@ -262,7 +262,7 @@ uint64_t vfio_region_read(void *opaque,
data = le64_to_cpu(buf.qword);
break;
default:
- hw_error("vfio: unsupported read size, %d bytes", size);
+ hw_error("vfio: unsupported read size, %u bytes", size);
break;
}