Skip to content

Commit

Permalink
core: typedef'ed the action context structure
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Apr 14, 2016
1 parent 43fc3cd commit 000fa42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.h
Expand Up @@ -40,14 +40,14 @@
#endif


struct run_act_ctx{
typedef struct run_act_ctx {
int rec_lev;
int run_flags;
int last_retcode; /* return from last route */
#ifdef USE_LONGJMP
jmp_buf jmp_env;
#endif
};
} run_act_ctx_t;


#define init_run_actions_ctx(ph) \
Expand Down

0 comments on commit 000fa42

Please sign in to comment.