lchan_fsm: fix lchan_fsm_on_error size

Set it to 32, because osmo_fsm allows 32 states.

Change-Id: I62f5e0f380513c52ea6932b270cf0c852930eb9f
This commit is contained in:
Oliver Smith 2022-11-22 17:12:57 +01:00 committed by osmith
parent adb55f1fe0
commit a68b80eb9e
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ struct osmo_tdef_state_timeout lchan_fsm_timeouts[32] = {
} while (0)
/* Which state to transition to when lchan_fail() is called in a given state. */
uint32_t lchan_fsm_on_error[34] = {
uint32_t lchan_fsm_on_error[32] = {
[LCHAN_ST_UNUSED] = LCHAN_ST_UNUSED,
[LCHAN_ST_WAIT_TS_READY] = LCHAN_ST_UNUSED,
[LCHAN_ST_WAIT_ACTIV_ACK] = LCHAN_ST_BORKEN,