Re: [Qemu-devel] [PATCH] vl: Use exit(1) when requested VGA interface is unavailable

2015-11-11 Thread Eric Blake
On 11/11/2015 01:39 PM, Eduardo Habkost wrote: > Instead of using exit(0), use exit(1) when an unavailable VGA > interface is used in the command-line to indicate it's an error. > > Signed-off-by: Eduardo Habkost > --- > vl.c | 14 +++--- > 1 file changed, 7 insertions(+), 7 deletions(-)

[Qemu-devel] [PATCH] vl: Use exit(1) when requested VGA interface is unavailable

2015-11-11 Thread Eduardo Habkost
Instead of using exit(0), use exit(1) when an unavailable VGA interface is used in the command-line to indicate it's an error. Signed-off-by: Eduardo Habkost --- vl.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/vl.c b/vl.c index 7d993a5..7b81998 100644 ---