fsm: cosmetic: fix weird spacing in osmo_fsm_inst_alloc()

Change-Id: I199085e717c6ebdc9061a0c9fa9a96bfbc11a74a
This commit is contained in:
Vadim Yanitskiy 2021-06-03 01:37:38 +02:00 committed by laforge
parent 7b894a7de0
commit 7d68959b0c
1 changed files with 2 additions and 2 deletions

View File

@ -450,8 +450,8 @@ struct osmo_fsm_inst *osmo_fsm_inst_alloc(struct osmo_fsm *fsm, void *ctx, void
osmo_timer_setup(&fi->timer, fsm_tmr_cb, fi);
if (osmo_fsm_inst_update_id(fi, id) < 0) {
fsm_free_or_steal(fi);
return NULL;
fsm_free_or_steal(fi);
return NULL;
}
INIT_LLIST_HEAD(&fi->proc.children);