1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-03-07 17:28:15 +00:00

qemu: Fix build breaker on printf directive

%zu for size_t not %lu
This commit is contained in:
John Ferlan 2014-09-15 11:37:20 -04:00
parent 1f96775866
commit c29cad6732

View File

@ -499,7 +499,7 @@ qemuMonitorIOWrite(qemuMonitorPtr mon)
done = qemuMonitorIOWriteWithFD(mon, buf, len, mon->msg->txFD);
PROBE(QEMU_MONITOR_IO_WRITE,
"mon=%p buf=%s len=%lu ret=%d errno=%d",
"mon=%p buf=%s len=%zu ret=%d errno=%d",
mon, buf, len, done, errno);
if (mon->msg->txFD != -1) {