From afa548b4f36f1214b25eed7942e0ff15c67740f0 Mon Sep 17 00:00:00 2001 From: Michael Keller Date: Sat, 3 Aug 2019 22:01:17 +1200 Subject: [PATCH] Fix CLI vtxtable powervalue output formatting (#8646) Fix CLI vtxtable powervalue output formatting --- src/main/cli/cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/cli/cli.c b/src/main/cli/cli.c index d3ed46386b..997de5fbd2 100644 --- a/src/main/cli/cli.c +++ b/src/main/cli/cli.c @@ -2436,7 +2436,7 @@ static char *formatVtxTablePowerValues(const uint16_t *levels, int count) static void printVtxTablePowerValues(dumpFlags_t dumpMask, const vtxTableConfig_t *currentConfig, const vtxTableConfig_t *defaultConfig) { - char *fmt = "vtxtable powervalues %s"; + char *fmt = "vtxtable powervalues%s"; bool equalsDefault = false; if (defaultConfig) { equalsDefault = true;