From: Edgar E. Iglesias Date: Fri, 16 Aug 2024 14:21:57 +0000 (+0200) Subject: hw/arm: xenpvh: Remove double-negation in warning X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1af029d799d0ab9a14e11c6e35620c26a3b87945;p=qemu.git hw/arm: xenpvh: Remove double-negation in warning Signed-off-by: Edgar E. Iglesias Reviewed-by: Stefano Stabellini --- diff --git a/hw/arm/xen_arm.c b/hw/arm/xen_arm.c index fda65d0d8d..16b3f00992 100644 --- a/hw/arm/xen_arm.c +++ b/hw/arm/xen_arm.c @@ -165,7 +165,7 @@ static void xen_arm_init(MachineState *machine) xam->state = g_new0(XenIOState, 1); if (machine->ram_size == 0) { - warn_report("%s non-zero ram size not specified. QEMU machine started" + warn_report("%s: ram size not specified. QEMU machine started" " without IOREQ (no emulated devices including virtio)", MACHINE_CLASS(object_get_class(OBJECT(machine)))->desc); return;