From: Alan T. DeKok Date: Tue, 31 Aug 2021 22:46:23 +0000 (-0400) Subject: remove UNUSED X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de7ec8c6c77a71fbb45abbe8ec39f6941938697e;p=thirdparty%2Ffreeradius-server.git remove UNUSED --- diff --git a/src/modules/rlm_test/rlm_test.c b/src/modules/rlm_test/rlm_test.c index cf66d743f86..86c72d09070 100644 --- a/src/modules/rlm_test/rlm_test.c +++ b/src/modules/rlm_test/rlm_test.c @@ -410,7 +410,7 @@ static void mod_retry_signal(UNUSED module_ctx_t const *mctx, request_t *request /* * Test retries */ -static unlang_action_t CC_HINT(nonnull) mod_retry(UNUSED rlm_rcode_t *p_result, UNUSED module_ctx_t const *mctx, UNUSED request_t *request) +static unlang_action_t CC_HINT(nonnull) mod_retry(UNUSED rlm_rcode_t *p_result, UNUSED module_ctx_t const *mctx, request_t *request) { return unlang_module_yield(request, mod_retry_resume, mod_retry_signal, NULL); }