AP_Arming: reduce length of internal errors errorstring prefix

MissionPlanner's HUD requires a short string for this to be useful
This commit is contained in:
Peter Barker 2019-07-12 16:09:18 +10:00 committed by Andrew Tridgell
parent 2f0a4ff1ab
commit bca411b2c4
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}