mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-12-23 14:21:57 +00:00
[common] remove "Option" from the option help output
This commit is contained in:
parent
823164a924
commit
cf030f6f0c
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
a12-175-g2ddae623b8+1
|
a12-176-g823164a924+1
|
|
@ -253,7 +253,7 @@ void option_print()
|
||||||
for(int i = 0; i < state.groups[g].count; ++i)
|
for(int i = 0; i < state.groups[g].count; ++i)
|
||||||
{
|
{
|
||||||
struct Option * o = state.groups[g].options[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)
|
switch(o->value.type)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue