From 1ffad8fed9a48c0ccd893eb47cce18278c73e6cd Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Wed, 26 Apr 2017 13:41:41 +0100 Subject: [PATCH] genmarshal: Conform --help output to conventions The convention for arguments taking a value is: --argument=VALUE with the `VALUE` in caps. https://bugzilla.gnome.org/show_bug.cgi?id=781755 --- gobject/glib-genmarshal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gobject/glib-genmarshal.c b/gobject/glib-genmarshal.c index 2941954b9..dc5636991 100644 --- a/gobject/glib-genmarshal.c +++ b/gobject/glib-genmarshal.c @@ -1116,8 +1116,8 @@ print_blurb (FILE *bout, g_fprintf (bout, "Utility Options:\n"); g_fprintf (bout, " --header Generate C headers\n"); g_fprintf (bout, " --body Generate C code\n"); - g_fprintf (bout, " --prefix=string Specify marshaller prefix\n"); - g_fprintf (bout, " --output=file Write output into the specified file\n"); + g_fprintf (bout, " --prefix=STRING Specify marshaller prefix\n"); + g_fprintf (bout, " --output=FILE Write output into the specified file\n"); g_fprintf (bout, " --skip-source Skip source location comments\n"); g_fprintf (bout, " --stdinc, --nostdinc Include/use standard marshallers\n"); g_fprintf (bout, " --internal Mark generated functions as internal\n");