Re: [Qemu-devel] [PATCH 03/11] vl: Use error_report() for --display errors

2015-06-15 Thread Eric Blake
On 06/13/2015 08:20 AM, Markus Armbruster wrote: > Results in nicer error messages. Before this patch: > > Invalid GTK option string: gtk,lirum-larum > > After: > > qemu-system-x86_64: -display gtk,lirum-larum: Invalid GTK option string > > Of course, the thing ought to use QemuOpts in

[Qemu-devel] [PATCH 03/11] vl: Use error_report() for --display errors

2015-06-13 Thread Markus Armbruster
Results in nicer error messages. Before this patch: Invalid GTK option string: gtk,lirum-larum After: qemu-system-x86_64: -display gtk,lirum-larum: Invalid GTK option string Of course, the thing ought to use QemuOpts instead of parsing by hand. Signed-off-by: Markus Armbruster --- v