From 79804b9fcc562670eed787f6c735668c80ab6d9e Mon Sep 17 00:00:00 2001 From: Nick Porter Date: Mon, 11 Apr 2022 17:40:08 +0100 Subject: [PATCH] Match function to prototype --- src/lib/unlang/compile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } -- 2.47.2