From b438e1058148e1fd944a9c8b1dbf7dd40c351041 Mon Sep 17 00:00:00 2001 From: nhjschulz Date: Sun, 11 Feb 2024 20:13:26 +0100 Subject: [PATCH] CFSM: Small comment fixes --- src/c_fsm/c_fsm.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/c_fsm/c_fsm.h b/src/c_fsm/c_fsm.h index 8ce5531..9bb8b1b 100644 --- a/src/c_fsm/c_fsm.h +++ b/src/c_fsm/c_fsm.h @@ -58,9 +58,9 @@ extern "C" { struct cfsm_Fsm; -typedef void (*cfsm_TransitionFunction)(struct cfsm_Fsm * state); -typedef void (*cfsm_EventFunction)(struct cfsm_Fsm *state, int eventId); -typedef void (*cfsm_ProcessFunction)(struct cfsm_Fsm *state); +typedef void (*cfsm_TransitionFunction)(struct cfsm_Fsm * fsm); +typedef void (*cfsm_EventFunction)(struct cfsm_Fsm * fsm, int eventId); +typedef void (*cfsm_ProcessFunction)(struct cfsm_Fsm * fsm); /** CFSM context operations */ typedef struct cfsm_Fsm {