diff options
| author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2023-01-17 15:07:02 +0400 |
|---|---|---|
| committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2023-03-13 22:57:39 +0400 |
| commit | f4579e2899df552ea0c1e2f68447fd64b0c38836 (patch) | |
| tree | 7114de8f0ec08c2b498cc2224e1cff94da7e72eb /hw/display/qxl.c | |
| parent | 1222070e772833c6875e0ca63565db12c22df39e (diff) | |
| download | focaccia-qemu-f4579e2899df552ea0c1e2f68447fd64b0c38836.tar.gz focaccia-qemu-f4579e2899df552ea0c1e2f68447fd64b0c38836.zip | |
ui: rename cursor_{put->unref}
The naming is more conventional in QEMU. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@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 ec712d3ca2..80ce1e9a93 100644 --- a/hw/display/qxl.c +++ b/hw/display/qxl.c @@ -299,7 +299,7 @@ void qxl_spice_reset_cursor(PCIQXLDevice *qxl) qxl->guest_cursor = 0; qemu_mutex_unlock(&qxl->track_lock); if (qxl->ssd.cursor) { - cursor_put(qxl->ssd.cursor); + cursor_unref(qxl->ssd.cursor); } qxl->ssd.cursor = cursor_builtin_hidden(); } |