From a406cb6f96425d2a82c28d5d0231df09b3f12161 Mon Sep 17 00:00:00 2001 From: Dominic Clifton Date: Fri, 24 Oct 2014 21:30:12 +0100 Subject: [PATCH] reorder aux/adjrange commands, commands must be alphabetically sorted due to the command-lookup code. --- src/main/io/serial_cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/io/serial_cli.c b/src/main/io/serial_cli.c index 637830893a..565ab42ee1 100644 --- a/src/main/io/serial_cli.c +++ b/src/main/io/serial_cli.c @@ -141,8 +141,8 @@ typedef struct { // should be sorted a..z for bsearch() const clicmd_t cmdTable[] = { - { "aux", "show/set aux settings", cliAux }, { "adjrange", "show/set adjustment ranges settings", cliAdjustmentRange }, + { "aux", "show/set aux settings", cliAux }, { "cmix", "design custom mixer", cliCMix }, #ifdef LED_STRIP { "color", "configure colors", cliColor },