Commit 2b288902 authored by Rémi Duraffort's avatar Rémi Duraffort

help: fix help string if colors are disabled

parent 3dd6f93f
......@@ -566,7 +566,7 @@ static void Usage (vlc_object_t *p_this, char const *psz_search)
}
/* Print name of module */
printf(color ? "\n " GREEN "%s" GRAY " (%s)\n" : "\n %s\n",
printf(color ? "\n " GREEN "%s" GRAY " (%s)\n" : "\n %s (%s)\n",
module_gettext(m, m->psz_longname), objname);
if (m->psz_help != NULL)
printf(color ? CYAN" %s\n"GRAY : " %s\n",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment