From 628d881247558805ef989e93fbc81371b5fa6caa Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Thu, 29 Jul 2021 13:46:34 +0200 Subject: [PATCH] Fix typos in comments documenting fsm st chg macro Change-Id: I8f1cef5810c84441f7d6d2fbe5b3106e0ae71b69 --- src/nacc_fsm.c | 2 +- src/tbf_fsm.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nacc_fsm.c b/src/nacc_fsm.c index d2702d47..9a5f5b5e 100644 --- a/src/nacc_fsm.c +++ b/src/nacc_fsm.c @@ -53,7 +53,7 @@ static const struct osmo_tdef_state_timeout nacc_fsm_timeouts[32] = { [NACC_ST_DONE] = {}, }; -/* Transition to a state, using the T timer defined in assignment_fsm_timeouts. +/* Transition to a state, using the T timer defined in nacc_fsm_timeouts. * The actual timeout value is in turn obtained from conn->T_defs. * Assumes local variable fi exists. */ diff --git a/src/tbf_fsm.h b/src/tbf_fsm.h index 1874bc34..9d2919d3 100644 --- a/src/tbf_fsm.h +++ b/src/tbf_fsm.h @@ -57,7 +57,7 @@ struct tbf_fsm_ctx { }; extern const struct osmo_tdef_state_timeout tbf_fsm_timeouts[32]; -/* Transition to a state, using the T timer defined in assignment_fsm_timeouts. +/* Transition to a state, using the T timer defined in tbf_fsm_timeouts. * The actual timeout value is in turn obtained from conn->T_defs. * Assumes local variable fi exists. */ #define tbf_fsm_state_chg(fi, NEXT_STATE) \