mirror of https://github.com/ArduPilot/ardupilot
AP_SmartRTL: fixed build warning
This commit is contained in:
parent
99884c89c9
commit
930d22daf9
|
@ -110,7 +110,7 @@ void check_path(const std::vector<Vector3f>& correct_path, const char* test_name
|
||||||
}
|
}
|
||||||
|
|
||||||
// display overall results
|
// display overall results
|
||||||
hal.console->printf("%s: %s time:%u us\n", test_name, (num_points_match && points_match) ? "success" : "fail", time_us);
|
hal.console->printf("%s: %s time:%u us\n", test_name, (num_points_match && points_match) ? "success" : "fail", (unsigned)time_us);
|
||||||
|
|
||||||
// display number of points
|
// display number of points
|
||||||
hal.console->printf(" expected %u points, got %u\n", (unsigned)correct_path.size(), (unsigned)smart_rtl.get_num_points());
|
hal.console->printf(" expected %u points, got %u\n", (unsigned)correct_path.size(), (unsigned)smart_rtl.get_num_points());
|
||||||
|
|
Loading…
Reference in New Issue