From 000fa421129a14fdad44e22545a04d2788040912 Mon Sep 17 00:00:00 2001 From: Daniel-Constantin Mierla Date: Thu, 14 Apr 2016 00:05:04 +0200 Subject: [PATCH] core: typedef'ed the action context structure --- action.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.h b/action.h index 62eed0c6d3f..b4591aa115d 100644 --- a/action.h +++ b/action.h @@ -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) \