From: Max Reitz Date: Fri, 19 Oct 2018 16:49:26 +0000 (+0200) Subject: chardev: Indent list of chardevs X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8513ec28beda57a8e037b811a681a2b54d9be80f;p=qemu.git chardev: Indent list of chardevs Following the example of qemu_opts_print_help(), indent all entries in the list of character devices. Signed-off-by: Max Reitz Reviewed-by: Marc-André Lureau Signed-off-by: Kevin Wolf --- diff --git a/chardev/char.c b/chardev/char.c index 79b05fb7b7..152dde5327 100644 --- a/chardev/char.c +++ b/chardev/char.c @@ -572,7 +572,7 @@ help_string_append(const char *name, void *opaque) { GString *str = opaque; - g_string_append_printf(str, "\n%s", name); + g_string_append_printf(str, "\n %s", name); } static const char *chardev_alias_translate(const char *name)