From: Nick Porter Date: Mon, 11 Apr 2022 16:40:08 +0000 (+0100) Subject: Match function to prototype X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79804b9fcc562670eed787f6c735668c80ab6d9e;p=thirdparty%2Ffreeradius-server.git Match function to prototype --- diff --git a/src/lib/unlang/compile.c b/src/lib/unlang/compile.c index 24d849022d..e1e8161e2c 100644 --- a/src/lib/unlang/compile.c +++ b/src/lib/unlang/compile.c @@ -4379,12 +4379,12 @@ static int8_t instruction_cmp(void const *one, void const *two) } -void unlang_compile_init() +void unlang_compile_init(void) { unlang_instruction_tree = fr_rb_talloc_alloc(NULL, unlang_t, instruction_cmp, NULL); } -void unlang_compile_free() +void unlang_compile_free(void) { TALLOC_FREE(unlang_instruction_tree); }