aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-11-05 01:24:54 +0300
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-11-05 01:25:00 +0300
commite74269bbe2befdec46ea321fad19e85b00a1834e (patch)
tree283e2729a65319f2e5f63052409438c7c751339a
parent06502214abcf20e5364c2772ad56d362e325ce5b (diff)
lchan_fsm: cosmetic: move a 'case' below the 'default' branch
It's unusual to have 'case' statements below the 'default' statement. Change-Id: I523a6d55d9a103ba69351d9dc6d0c000a422a765
-rw-r--r--src/osmo-bsc/lchan_fsm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bsc/lchan_fsm.c b/src/osmo-bsc/lchan_fsm.c
index 2f6248708..64840f07d 100644
--- a/src/osmo-bsc/lchan_fsm.c
+++ b/src/osmo-bsc/lchan_fsm.c
@@ -806,8 +806,8 @@ static void lchan_fsm_wait_activ_ack_onenter(struct osmo_fsm_inst *fi, uint32_t
act_type = lchan->conn->ho.async ? RSL_ACT_INTER_ASYNC : RSL_ACT_INTER_SYNC;
ho_ref = lchan->conn->ho.ho_ref;
break;
- default:
case ACTIVATE_FOR_ASSIGNMENT:
+ default:
act_type = RSL_ACT_INTRA_NORM_ASS;
break;
}