fix incorrect argc < 1 check for no arguments

-requiring arguments should be argc < 2
This commit is contained in:
Daniel Agar
2015-03-17 13:37:01 -04:00
committed by Lorenz Meier
parent 63d741e368
commit 2e824bbeea
28 changed files with 38 additions and 28 deletions
+1 -1
View File
@@ -261,7 +261,7 @@ void answer_command(struct vehicle_command_s &cmd, enum VEHICLE_CMD_RESULT resul
int commander_main(int argc, char *argv[])
{
if (argc < 1) {
if (argc < 2) {
usage("missing command");
}