From bfaf3093a4bed6f260d14e2de74688fd38bce30b Mon Sep 17 00:00:00 2001 From: proddy Date: Sun, 13 Sep 2020 11:06:25 +0200 Subject: [PATCH] auto formatting --- src/console.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/console.cpp b/src/console.cpp index 43e09f96e..5809ff19f 100644 --- a/src/console.cpp +++ b/src/console.cpp @@ -247,7 +247,7 @@ void EMSESPShell::add_console_commands() { commands->add_command(ShellContext::MAIN, CommandFlags::ADMIN, flash_string_vector{F_(read)}, - flash_string_vector{F_(deviceid_mandatory) ,F_(typeid_mandatory)}, + flash_string_vector{F_(deviceid_mandatory), F_(typeid_mandatory)}, [=](Shell & shell __attribute__((unused)), const std::vector & arguments) { uint8_t device_id = Helpers::hextoint(arguments.front().c_str()); uint16_t type_id = Helpers::hextoint(arguments.back().c_str());