Browse Source

AP_Arming: reduce length of internal errors errorstring prefix

MissionPlanner's HUD requires a short string for this to be useful
master
Peter Barker 6 years ago committed by Andrew Tridgell
parent
commit
bca411b2c4
  1. 2
      libraries/AP_Arming/AP_Arming.cpp

2
libraries/AP_Arming/AP_Arming.cpp

@ -664,7 +664,7 @@ bool AP_Arming::system_checks(bool report) @@ -664,7 +664,7 @@ bool AP_Arming::system_checks(bool report)
}
}
if (AP::internalerror().errors() != 0) {
check_failed(ARMING_CHECK_NONE, report, "Internal errors detected (0x%x)", AP::internalerror().errors());
check_failed(ARMING_CHECK_NONE, report, "Internal errors (0x%x)", AP::internalerror().errors());
return false;
}

Loading…
Cancel
Save