Skip to content

Commit

Permalink
AP_AdvancedFailsafe: fix singleton panic message
Browse files Browse the repository at this point in the history
  • Loading branch information
robertlong13 authored and peterbarker committed Dec 15, 2024
1 parent a48ff84 commit a598045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/AP_AdvancedFailsafe/AP_AdvancedFailsafe.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class AP_AdvancedFailsafe
{
AP_Param::setup_object_defaults(this, var_info);
if (_singleton != nullptr) {
AP_HAL::panic("AP_Logger must be singleton");
AP_HAL::panic("AP_AdvancedFailsafe must be singleton");
}

_singleton = this;
Expand Down

0 comments on commit a598045

Please sign in to comment.