silc_snprintf name fixes.
[silc.git] / lib / silcutil / silcfsm.h
index 8a28360b5d3c1cfe8ff4a4322a33875bac22af04..29ec90163febf4092ba267b639fcb263713d7f04 100644 (file)
@@ -133,8 +133,12 @@ typedef struct SilcFSMObject SilcFSMThreadStruct;
  *    }
  *
  ***/
+#ifndef SILC_FSM_SMALL_STACK
 #define SILC_FSM_CONTINUE \
   return fsm->next_state(fsm, fsm->fsm_context, fsm->state_context);
+#else
+#define SILC_FSM_CONTINUE return SILC_FSM_ST_CONTINUE;
+#endif /* SILC_FSM_SMALL_STACK */
 
 /****d* silcutil/SilcFSMAPI/SILC_FSM_YIELD
  *