From 48f456017375e5a67f132e08a9c6771790c606ec Mon Sep 17 00:00:00 2001 From: Stathis Kamperis Date: Wed, 2 Apr 2008 00:40:46 +0300 Subject: [PATCH] Add a comment in hash table initialization --- unix/fsm/states.c | 1 + 1 file changed, 1 insertion(+) diff --git a/unix/fsm/states.c b/unix/fsm/states.c index 3a7d299..cd0f909 100644 --- a/unix/fsm/states.c +++ b/unix/fsm/states.c @@ -21,6 +21,7 @@ stret_t state_init(state_t **state, size_t size, unsigned int factor) return ST_NOMEM; } + /* Initialize hash table that stores the events the state can process */ if (htable_init((*state)->evttable, size, factor, state_hashf, state_cmpf, state_printf) == HT_NOMEM) { free((*state)->evttable); -- 2.11.4.GIT