From f4eabd4f3c747254f4674f914ddbb017cd43ea54 Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Mon, 13 Jan 2025 00:04:35 -0500 Subject: [PATCH] ESP32-Console --- ESP32-Console/main/commands.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ESP32-Console/main/commands.h b/ESP32-Console/main/commands.h index 8cd331385..93d8674e8 100644 --- a/ESP32-Console/main/commands.h +++ b/ESP32-Console/main/commands.h @@ -35,8 +35,8 @@ static int exec_info_cmd (int argc, char **argv) { ESP_LOGW("CLI", "This is the Information Command."); - //int nerrors = arg_parse(argc, argv, (void**) &info_args); - int nerrors = arg_parse(argc, argv, argtable); + int nerrors = arg_parse(argc, argv, (void**) &info_args); + //int nerrors = arg_parse(argc, argv, argtable); if (nerrors != 0) { arg_print_errors(stderr, info_args.end, argv[0]); return 1;