From 15ad46fff9ceb1b053db02599b405bad0b35da8c Mon Sep 17 00:00:00 2001 From: chenrun1 Date: Wed, 11 Oct 2023 11:11:17 +0800 Subject: [PATCH] ramspeed:Fix the problem that the "-i" option doesn't work. Signed-off-by: chenrun1 --- system/ramspeed/ramspeed_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/ramspeed/ramspeed_main.c b/system/ramspeed/ramspeed_main.c index 77bd85449..6e6520007 100644 --- a/system/ramspeed/ramspeed_main.c +++ b/system/ramspeed/ramspeed_main.c @@ -128,7 +128,7 @@ static void parse_commandline(int argc, FAR char **argv, show_usage(argv[0], EXIT_FAILURE); } - while ((ch = getopt(argc, argv, "r:w:s:v:n:i:a")) != ERROR) + while ((ch = getopt(argc, argv, "r:w:s:v:n:ia")) != ERROR) { switch (ch) {