mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-06-28 04:40:35 +08:00
fix incorrect argc < 1 check for no arguments
-requiring arguments should be argc < 2
This commit is contained in:
committed by
Lorenz Meier
parent
63d741e368
commit
2e824bbeea
@@ -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");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user