Commit 6017d5f5 authored by Guillaume Quintard's avatar Guillaume Quintard

Fix typo

parent d1d1b780
......@@ -2161,7 +2161,7 @@ cmd_rxcont(CMD_ARGS)
while (*++av)
if (!strcmp(*av, "-some")) {
STRTOU32(times, *av, p, vl, "-some");
if (time <= 0)
if (times <= 0)
vtc_fatal(vl, "-some argument must be more"
"than 0 (found \"%s\")\n", *av);
} else if (!strcmp(*av, "-all"))
......@@ -2211,7 +2211,7 @@ cmd_rxdata(CMD_ARGS)
while (*++av)
if (!strcmp(*av, "-some")) {
STRTOU32(times, *av, p, vl, "-some");
if (time <= 0)
if (times <= 0)
vtc_fatal(vl, "-some argument must be more"
"than 0 (found \"%s\")\n", *av);
} else if (!strcmp(*av, "-all"))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment