From 48344c6e2a66bd3497218776cf15219fd0dbd205 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beat=20K=C3=BCng?= Date: Tue, 26 Oct 2021 09:13:29 +0200 Subject: [PATCH] state_machine_helper: add missing 'break' (no behavior change) --- src/modules/commander/state_machine_helper.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/commander/state_machine_helper.cpp b/src/modules/commander/state_machine_helper.cpp index 948ef69a60..7396147a6a 100644 --- a/src/modules/commander/state_machine_helper.cpp +++ b/src/modules/commander/state_machine_helper.cpp @@ -827,6 +827,8 @@ bool set_nav_state(vehicle_status_s &status, actuator_armed_s &armed, commander_ status.nav_state = vehicle_status_s::NAVIGATION_STATE_OFFBOARD; } + break; + default: break; }