From e34ea2db36e7e1787e8ee319d57c11a10b87bd6c Mon Sep 17 00:00:00 2001 From: Maxim Buzdalov Date: Wed, 28 Aug 2024 16:04:09 +0100 Subject: [PATCH] AP_Notify: Fix compilation error in GPIO_LED_1.cpp --- libraries/AP_Notify/GPIO_LED_1.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_Notify/GPIO_LED_1.cpp b/libraries/AP_Notify/GPIO_LED_1.cpp index 4f11affe0265e4..431256465f4440 100644 --- a/libraries/AP_Notify/GPIO_LED_1.cpp +++ b/libraries/AP_Notify/GPIO_LED_1.cpp @@ -48,7 +48,7 @@ void GPIO_LED_1::update(void) if (AP_Notify::flags.initialising) { new_pattern = INITIALIZING; } else if (AP_Notify::flags.failsafe_radio || AP_Notify::flags.failsafe_gcs || AP_Notify::flags.failsafe_battery) { - new pattern = FAILSAFE; + new_pattern = FAILSAFE; } else if (AP_Notify::flags.armed) { new_pattern = ARMED; } else if (AP_Notify::flags.pre_arm_check) {