octoi_srv_fsm: fix implicit fall-through

Found by gcc (Debian 10.2.1-6) 10.2.1 20210110, which fails the build
with --enable-werror because of this.

Change-Id: Ib717df376a4b414f787168c2c632f04f0c51271b
This commit is contained in:
Oliver Smith 2022-07-12 13:12:42 +02:00
parent 802943055d
commit 6cd951d714
1 changed files with 1 additions and 0 deletions

View File

@ -131,6 +131,7 @@ static void srv_st_init(struct osmo_fsm_inst *fi, uint32_t event, void *data)
case ACCOUNT_MODE_NONE:
LOGPFSML(fi, LOGL_NOTICE, "User account %s has mode 'none', rejecting\n",
acc->user_id);
/* fall through */
default:
st->rej_str = "Unsupported mode for user";
goto reject;