From: Alan T. DeKok Date: Sat, 21 May 2022 14:22:32 +0000 (-0400) Subject: add void to shut up compiler X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=771d03a397a1fbe55ed259a16ebe468629e8a7b7;p=thirdparty%2Ffreeradius-server.git add void to shut up compiler --- diff --git a/src/lib/unlang/xlat_inst.c b/src/lib/unlang/xlat_inst.c index b6c6cf994f6..363f6d36b8b 100644 --- a/src/lib/unlang/xlat_inst.c +++ b/src/lib/unlang/xlat_inst.c @@ -182,7 +182,7 @@ static int _xlat_inst_detach(xlat_inst_t *xi) fr_assert(xlat_inst_tree); /* xlat_inst_init must have been called */ - talloc_get_type_abort_const(xi->node, xlat_exp_t); + (void) talloc_get_type_abort_const(xi->node, xlat_exp_t); fr_assert(xi->node->type == XLAT_FUNC); call = &xi->node->call;