Skip to content

Commit

Permalink
help: fix help string if colors are disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
ivoire committed Jan 19, 2014
1 parent 3dd6f93 commit 2b28890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/help.c
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 2b28890

Please sign in to comment.