diff --git a/mods/context.c b/mods/context.c index b27a8c5..2ce608a 100644 --- a/mods/context.c +++ b/mods/context.c @@ -13,6 +13,7 @@ * @see https://lowenware.com/ */ +#include #include "context.h" diff --git a/mods/feedback.c b/mods/feedback.c index 1c503b6..cac08bd 100644 --- a/mods/feedback.c +++ b/mods/feedback.c @@ -23,11 +23,10 @@ #include "feedback.h" -struct context -{ +struct context { struct ax_context root; - struct ax_query qs; - struct ax_mail mail; + struct ax_query qs; + struct ax_mail mail; char *email; char *msg; }; @@ -53,9 +52,8 @@ context_free(Context ctx) static int -on_input_var( const char *key, uint32_t k_len, - const char *val, uint32_t v_len, - void *p_ctx ) +on_input_var(const char *key, uint32_t k_len, const char *val, uint32_t v_len, + void *p_ctx ) { Context ctx = (Context) p_ctx; AxFeedback mod = (AxFeedback)((AxContext)ctx)->mod;