From cf030f6f0c71af1f833c35396730d82f1a182252 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Sat, 11 May 2019 11:51:29 +1000 Subject: [PATCH] [common] remove "Option" from the option help output --- VERSION | 2 +- common/src/option.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 6cceba73..22cdcc4b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -a12-175-g2ddae623b8+1 \ No newline at end of file +a12-176-g823164a924+1 \ No newline at end of file diff --git a/common/src/option.c b/common/src/option.c index 74063b4c..9cb341a6 100644 --- a/common/src/option.c +++ b/common/src/option.c @@ -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) {