|
|
@ -27,11 +27,11 @@ struct cmd_results *output_cmd_position(int argc, char **argv) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
// Format is 1234 4321 (legacy)
|
|
|
|
// Format is 1234 4321 (legacy)
|
|
|
|
|
|
|
|
argc--; argv++;
|
|
|
|
if (!argc) {
|
|
|
|
if (!argc) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "output",
|
|
|
|
return cmd_results_new(CMD_INVALID, "output",
|
|
|
|
"Missing position argument (y).");
|
|
|
|
"Missing position argument (y).");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argc--; argv++;
|
|
|
|
|
|
|
|
config->handler_context.output_config->y = strtol(*argv, &end, 10);
|
|
|
|
config->handler_context.output_config->y = strtol(*argv, &end, 10);
|
|
|
|
if (*end) {
|
|
|
|
if (*end) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "output",
|
|
|
|
return cmd_results_new(CMD_INVALID, "output",
|
|
|
|