diff options
author | Alex Chen <alex.chen@huawei.com> | 2020-11-19 02:58:51 +0000 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2021-02-04 14:32:40 +0100 |
commit | ada6f6f4a34351c1320d30e4fc495c1d536bd19c (patch) | |
tree | 941e792a47f4d0679fbcdf3090c45b20dcdcf695 /hw/display/qxl.c | |
parent | db754f8ccaf2f073c9aed46a4389e9c0c2080399 (diff) | |
download | qemu-ada6f6f4a34351c1320d30e4fc495c1d536bd19c.zip qemu-ada6f6f4a34351c1320d30e4fc495c1d536bd19c.tar.gz qemu-ada6f6f4a34351c1320d30e4fc495c1d536bd19c.tar.bz2 |
hw/display/qxl: Fix bad printf format specifiers
We should use printf format specifier "%u" instead of "%d" for
argument of type "unsigned int".
Reported-by: Euler Robot <euler.robot@huawei.com>
Signed-off-by: Alex Chen <alex.chen@huawei.com>
Message-id: 20201119025851.56487-1-alex.chen@huawei.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/display/qxl.c')
-rw-r--r-- | hw/display/qxl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/display/qxl.c b/hw/display/qxl.c index 431c107..874bb8a 100644 --- a/hw/display/qxl.c +++ b/hw/display/qxl.c @@ -944,7 +944,7 @@ static void interface_async_complete_io(PCIQXLDevice *qxl, QXLCookie *cookie) qxl_spice_destroy_surface_wait_complete(qxl, cookie->u.surface_id); break; default: - fprintf(stderr, "qxl: %s: unexpected current_async %d\n", __func__, + fprintf(stderr, "qxl: %s: unexpected current_async %u\n", __func__, current_async); } qxl_send_events(qxl, QXL_INTERRUPT_IO_CMD); |