cosmetic: smscb_message_fsm.c: Fix typo in comment

Change-Id: I2eb15c2401efa9b07a51dbe71997da01aab30bba
This commit is contained in:
Pau Espin 2022-07-25 12:10:40 +02:00
parent 3468e90ab3
commit 5044524f01
1 changed files with 4 additions and 4 deletions

View File

@ -287,19 +287,19 @@ static int smscb_fsm_timer_cb(struct osmo_fsm_inst *fi)
{
switch (fi->T) {
case T_WAIT_WRITE_ACK:
/* onexit will take care of notifying the user */
/* onleave will take care of notifying the user */
osmo_fsm_inst_state_chg(fi, SMSCB_S_ACTIVE, 0, 0);
break;
case T_WAIT_REPLACE_ACK:
/* onexit will take care of notifying the user */
/* onleave will take care of notifying the user */
osmo_fsm_inst_state_chg(fi, SMSCB_S_ACTIVE, 0, 0);
break;
case T_WAIT_STATUS_ACK:
/* onexit will take care of notifying the user */
/* onleave will take care of notifying the user */
osmo_fsm_inst_state_chg(fi, SMSCB_S_ACTIVE, 0, 0);
break;
case T_WAIT_DELETE_ACK:
/* onexit will take care of notifying the user */
/* onleave will take care of notifying the user */
osmo_fsm_inst_state_chg(fi, SMSCB_S_DELETED, 0, 0);
break;
default: