From: Alan T. DeKok Date: Fri, 17 Dec 2021 14:40:18 +0000 (-0500) Subject: -Wunused X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1e1442f2c89a872d06d1cede37516370bd2fac6;p=thirdparty%2Ffreeradius-server.git -Wunused --- diff --git a/src/lib/util/calc.c b/src/lib/util/calc.c index 833bb5a265..b74b0e64db 100644 --- a/src/lib/util/calc.c +++ b/src/lib/util/calc.c @@ -350,7 +350,7 @@ static int calc_date(UNUSED TALLOC_CTX *ctx, fr_value_box_t *dst, fr_value_box_t return 0; } -static int calc_time_delta(UNUSED TALLOC_CTX *ctx, fr_value_box_t *dst, fr_value_box_t const *a, fr_token_t op, fr_value_box_t const *b) +static int calc_time_delta(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_value_box_t const *a, fr_token_t op, fr_value_box_t const *b) { fr_value_box_t one, two; int64_t when;