[common] remove "Option" from the option help output

This commit is contained in:
Geoffrey McRae
2019-05-11 11:51:29 +10:00
parent 823164a924
commit cf030f6f0c
2 changed files with 2 additions and 2 deletions

View File

@@ -253,7 +253,7 @@ void option_print()
for(int i = 0; i < state.groups[g].count; ++i)
{
struct Option * o = state.groups[g].options[i];
printf(" Option: %s:%-*s - %s [", o->module, state.groups[g].pad, o->name, o->description);
printf(" %s:%-*s - %s [", o->module, state.groups[g].pad, o->name, o->description);
switch(o->value.type)
{