From: Gerd Hoffmann Date: Tue, 17 Mar 2015 07:56:18 +0000 (+0100) Subject: virtio-gpu: fix error message X-Git-Tag: v2.4.0-rc0~70^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c84167b4efa4a0e81946ef624e96005396e14b2;p=thirdparty%2Fqemu.git virtio-gpu: fix error message iov limit was raised, but the error message still has the old limit ... Signed-off-by: Gerd Hoffmann --- diff --git a/hw/display/virtio-gpu.c b/hw/display/virtio-gpu.c index 4b10ca1ebbb..8c109b79f4d 100644 --- a/hw/display/virtio-gpu.c +++ b/hw/display/virtio-gpu.c @@ -534,7 +534,7 @@ int virtio_gpu_create_mapping_iov(struct virtio_gpu_resource_attach_backing *ab, if (ab->nr_entries > 16384) { qemu_log_mask(LOG_GUEST_ERROR, - "%s: nr_entries is too big (%d > 1024)\n", + "%s: nr_entries is too big (%d > 16384)\n", __func__, ab->nr_entries); return -1; }