From: Nick Porter Date: Wed, 7 May 2025 19:36:19 +0000 (+0100) Subject: Remove unused argument from format X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=738a9cce91d067a1339e28ddc19fb563bedf45cc;p=thirdparty%2Ffreeradius-server.git Remove unused argument from format --- diff --git a/src/lib/unlang/call_env.c b/src/lib/unlang/call_env.c index 6afbdca0e7f..db8a85f6728 100644 --- a/src/lib/unlang/call_env.c +++ b/src/lib/unlang/call_env.c @@ -481,7 +481,7 @@ static int call_env_parse(TALLOC_CTX *ctx, call_env_parsed_head_t *parsed, char } if (call_env_parse(ctx, parsed, name, t_rules, subcs, cec, rule_p->section.subcs) < 0) { - CALL_ENV_DEBUG(cs, "%s: Recursive call failed", name, rule_p->name); + CALL_ENV_DEBUG(cs, "%s: Recursive call failed", name); return -1; } goto next;