From 4814d88633de93d6bff8534163afe989bee82f2d Mon Sep 17 00:00:00 2001 From: Antoine Cellerier Date: Sat, 7 Apr 2007 20:07:56 +0000 Subject: [PATCH] Fix help string. --- src/libvlc-module.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libvlc-module.c b/src/libvlc-module.c index 754d7b2d49..8dbd74dc13 100644 --- a/src/libvlc-module.c +++ b/src/libvlc-module.c @@ -2176,17 +2176,17 @@ vlc_module_end(); const module_config_t libvlc_config[] = { - { + { .i_type = CONFIG_ITEM_BOOL, .psz_name = "help", .i_short = 'h', - .psz_text = N_("print help for VLC (can be combined with --advanced)") + .psz_text = N_("print help for VLC (can be combined with --advanced and --help-verbose)") }, { .i_type = CONFIG_ITEM_BOOL, .psz_name = "longhelp", .i_short = 'H', - .psz_text = N_("print help for VLC and all its modules (can be combined with --advanced)") + .psz_text = N_("print help for VLC and all its modules (can be combined with --advanced and --help-verbose)") }, { .i_type = CONFIG_ITEM_BOOL, @@ -2208,7 +2208,7 @@ const module_config_t libvlc_config[] = .i_type = CONFIG_ITEM_STRING, .psz_name = "module", .i_short = 'p', - .psz_text = N_("print help on a specific module (can be combined with --advanced)") + .psz_text = N_("print help on a specific module (can be combined with --advanced and --help-verbose)") }, { .i_type = CONFIG_ITEM_BOOL, -- 2.39.2