From: Alan T. DeKok Date: Mon, 4 Sep 2023 01:51:47 +0000 (-0400) Subject: mark up unused variable X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac520f153e9c87cd9419fb8a83eadb509f9be13f;p=thirdparty%2Ffreeradius-server.git mark up unused variable --- diff --git a/src/lib/unlang/compile.c b/src/lib/unlang/compile.c index 0c8a2dc6135..069e6c020c9 100644 --- a/src/lib/unlang/compile.c +++ b/src/lib/unlang/compile.c @@ -230,7 +230,7 @@ static inline CC_HINT(always_inline) int unlang_rules_verify(tmpl_rules_t const #endif #define RULES_VERIFY(_rules) do { if (unlang_rules_verify(_rules) < 0) return NULL; } while (0) -static bool pass2_fixup_tmpl(TALLOC_CTX *ctx, tmpl_t **vpt_p, CONF_ITEM const *ci, fr_dict_t const *dict) +static bool pass2_fixup_tmpl(UNUSED TALLOC_CTX *ctx, tmpl_t **vpt_p, CONF_ITEM const *ci, fr_dict_t const *dict) { tmpl_t *vpt = *vpt_p;