mirror of https://github.com/xqemu/xqemu.git
qxl: unbreak after memory API conversion
Break is only noticable with newer spice-server library (0.8.2 release or 0.9.0 and newer on master branch). ioport_write's val was changed from uint32_t to uint64_t, this broke two printfs. Use PRId64 instead of %d. Signed-off-by: Alon Levy <alevy@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
be48e99512
commit
c5f3dabba9
5
hw/qxl.c
5
hw/qxl.c
|
@ -1187,7 +1187,7 @@ async_common:
|
||||||
}
|
}
|
||||||
d->current_async = orig_io_port;
|
d->current_async = orig_io_port;
|
||||||
qemu_mutex_unlock(&d->async_lock);
|
qemu_mutex_unlock(&d->async_lock);
|
||||||
dprint(d, 2, "start async %d (%d)\n", io_port, val);
|
dprint(d, 2, "start async %d (%"PRId64")\n", io_port, val);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
@ -1303,7 +1303,8 @@ async_common:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case QXL_IO_FLUSH_SURFACES_ASYNC:
|
case QXL_IO_FLUSH_SURFACES_ASYNC:
|
||||||
dprint(d, 1, "QXL_IO_FLUSH_SURFACES_ASYNC (%d) (%s, s#=%d, res#=%d)\n",
|
dprint(d, 1, "QXL_IO_FLUSH_SURFACES_ASYNC"
|
||||||
|
" (%"PRId64") (%s, s#=%d, res#=%d)\n",
|
||||||
val, qxl_mode_to_string(d->mode), d->guest_surfaces.count,
|
val, qxl_mode_to_string(d->mode), d->guest_surfaces.count,
|
||||||
d->num_free_res);
|
d->num_free_res);
|
||||||
qxl_spice_flush_surfaces_async(d);
|
qxl_spice_flush_surfaces_async(d);
|
||||||
|
|
Loading…
Reference in New Issue