[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

@ -1 +1 @@
a12-175-g2ddae623b8+1
a12-176-g823164a924+1

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)
{