From 9d3f8ddbfff86c6fecac400fe934e29582939e94 Mon Sep 17 00:00:00 2001 From: ismail Date: Mon, 25 Aug 2025 09:40:18 +0300 Subject: [PATCH] Fix implicit-fallthrough warning. Refs #1085. --- src/relay_chn_tilt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/relay_chn_tilt.c b/src/relay_chn_tilt.c index 7eaf97c..826c352 100644 --- a/src/relay_chn_tilt.c +++ b/src/relay_chn_tilt.c @@ -116,7 +116,7 @@ static void relay_chn_tilt_issue_cmd(relay_chn_tilt_ctl_t *tilt_ctl, relay_chn_t case RELAY_CHN_STATE_REVERSE_PENDING: // Issue a stop command first so that the timer and pending cmd get cleared relay_chn_dispatch_cmd(tilt_ctl->chn_ctl, RELAY_CHN_CMD_STOP); - // break not put intentionally + // FALLTHRU case RELAY_CHN_STATE_STOPPED: { // Check if channel needs timing before tilting uint32_t req_timing_ms = relay_chn_tilt_get_required_timing_before_tilting(tilt_ctl, cmd);