qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v2 13/16] vl.c: Reword -machine help error messa


From: Markus Armbruster
Subject: Re: [Qemu-devel] [PATCH v2 13/16] vl.c: Reword -machine help error messages
Date: Thu, 29 Oct 2015 18:27:57 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux)

Eduardo Habkost <address@hidden> writes:

> * Use "\n" consistently in both error messages.
> * Simplify error message.
>
> Signed-off-by: Eduardo Habkost <address@hidden>
> ---
>  vl.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/vl.c b/vl.c
> index 61e474b..55521a0 100644
> --- a/vl.c
> +++ b/vl.c
> @@ -2634,8 +2634,8 @@ static gint machine_class_cmp(gconstpointer a, 
> gconstpointer b)
>          return mc;
>      }
>      if (name && !is_help_option(name)) {
> -        error_report("unsupported machine type");
> -        error_printf("Use -machine help to list supported machines!\n");
> +        error_report("unsupported machine type\n"
> +                     "Use -machine help to list supported machines");

error_report()'s contract:

/*
 * Print an error message to current monitor if we have one, else to stderr.
 * Format arguments like sprintf().  The result should not contain
 * newlines.
 * Prepend the current location and append a newline.
 * It's wrong to call this in a QMP monitor.  Use error_setg() there.
 */

The old code gets it right.

You could squash the removal of '!' into PATCH 03.

>      } else {
>          printf("Supported machines are:\n");
>          machines = g_slist_sort(machines, machine_class_cmp);
> @@ -3994,8 +3994,8 @@ int main(int argc, char **argv, char **envp)
>      }
>  
>      if (machine_class == NULL) {
> -        error_report("No machine specified, and there is no default.\n"
> -                     "Use -machine help to list supported machines!");
> +        error_report("no machine specified\n"
> +                     "Use -machine help to list supported machines");
>          exit(1);
>      }

Likewise.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]