AP_Parachute: Fix singleton panic message

This commit is contained in:
david sastre 2020-05-04 00:18:36 +02:00 committed by Peter Barker
parent bd0ebb5778
commit f8b6d4b0ac
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ public:
// setup parameter defaults
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
if (_singleton != nullptr) {
AP_HAL::panic("Rally must be singleton");
AP_HAL::panic("Parachute must be singleton");
}
#endif
_singleton = this;