mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
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>
This commit is contained in:
parent
db754f8cca
commit
ada6f6f4a3
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue