Skip to content

Commit c7f9136

Browse files
committed
Add cosmetic changes to libs/fsm/fsm.h
1 parent c6858ec commit c7f9136

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/fsm/fsm.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ void am_fsm_dispatch(struct am_fsm *fsm, const struct am_event *event);
169169
* @retval false not in the state
170170
* @retval true in the state
171171
*/
172-
bool am_fsm_is_in(const struct am_fsm *fsm, const am_fsm_state_fn state);
172+
bool am_fsm_is_in(const struct am_fsm *fsm, am_fsm_state_fn state);
173173

174174
/**
175175
* Get active state.
@@ -186,7 +186,7 @@ am_fsm_state_fn am_fsm_state(const struct am_fsm *fsm);
186186
* @param state the initial state of the FSM object
187187
* The initial state must return AM_FSM_TRAN(s)
188188
*/
189-
void am_fsm_ctor(struct am_fsm *fsm, const am_fsm_state_fn state);
189+
void am_fsm_ctor(struct am_fsm *fsm, am_fsm_state_fn state);
190190

191191
/**
192192
* FSM destructor.

0 commit comments

Comments
 (0)