]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Match function to prototype
authorNick Porter <nick@portercomputing.co.uk>
Mon, 11 Apr 2022 16:40:08 +0000 (17:40 +0100)
committerNick Porter <nick@portercomputing.co.uk>
Mon, 11 Apr 2022 16:40:08 +0000 (17:40 +0100)
src/lib/unlang/compile.c

index 24d849022d05f23448795eb0fb40a922c99d1018..e1e8161e2c3b7d80901f521b0cb9240c42dd0b8a 100644 (file)
@@ -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);
 }