[vlc-commits] config: fix copy-paste error (fixes #17519)
Rémi Denis-Courmont
git at videolan.org
Tue Oct 18 16:22:36 CEST 2016
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Oct 18 17:22:05 2016 +0300| [87de0985542bff770c0c5c67e19c19b069f0b09c] | committer: Rémi Denis-Courmont
config: fix copy-paste error (fixes #17519)
Regression from f8d541e6e0bff4d7fb7e7f1f8dc368ed2617e597.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=87de0985542bff770c0c5c67e19c19b069f0b09c
---
src/config/help.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/config/help.c b/src/config/help.c
index 16afba3..ffa503a 100644
--- a/src/config/help.c
+++ b/src/config/help.c
@@ -496,7 +496,7 @@ static void print_item(const module_t *m, const module_config_t *item,
}
printf("%*s", offset, "");
- print_desc(module_gettext(m, item->psz_longtext),
+ print_desc(module_gettext(m, item->psz_text),
PADDING_SPACES + LINE_START, color);
if (suffix != NULL)
More information about the vlc-commits
mailing list