diff options
author | Philipp Maier <pmaier@sysmocom.de> | 2018-11-16 17:45:40 +0100 |
---|---|---|
committer | Philipp Maier <pmaier@sysmocom.de> | 2018-11-16 17:45:40 +0100 |
commit | af6710f4d433d138c5d1ea57d1e4ab22c86d4385 (patch) | |
tree | 15b5b349106f59dc09f9246ca0766c0407fe8cfe | |
parent | 086b345414ef17b305b5c624fbdbc4bf0f855042 (diff) |
fsm: fix apidoc of osmo_fsm_state_name()
The api documentation of osmo_fsm_state_name() refers to an FSM
instance, but it really means the state of an FSM.
Change-Id: I88ddd6048426d380c49170e66f57b3843398c046
-rw-r--r-- | src/fsm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -414,7 +414,7 @@ const char *osmo_fsm_inst_name(struct osmo_fsm_inst *fi) return fi->fsm->name; } -/*! get human-readable name of FSM instance +/*! get human-readable name of FSM state * \param[in] fsm FSM descriptor * \param[in] state FSM state number * \returns string rendering of the FSM state |