summaryrefslogtreecommitdiff
path: root/test/console_edit.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/console_edit.c')
-rw-r--r--test/console_edit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/console_edit.c b/test/console_edit.c
index 945e98b453..b6ca3cad6e 100644
--- a/test/console_edit.c
+++ b/test/console_edit.c
@@ -19,14 +19,14 @@ static int command_test_1(int argc, char **argv)
cmd_1_call_cnt++;
return EC_SUCCESS;
}
-DECLARE_CONSOLE_COMMAND(test1, command_test_1, NULL, NULL, NULL);
+DECLARE_CONSOLE_COMMAND(test1, command_test_1, NULL, NULL);
static int command_test_2(int argc, char **argv)
{
cmd_2_call_cnt++;
return EC_SUCCESS;
}
-DECLARE_CONSOLE_COMMAND(test2, command_test_2, NULL, NULL, NULL);
+DECLARE_CONSOLE_COMMAND(test2, command_test_2, NULL, NULL);
/*****************************************************************************/
/* Test utilities */