From ae945f452a86d55df987b7d87161030c31bdc935 Mon Sep 17 00:00:00 2001 From: Oneric Date: Mon, 4 Apr 2022 20:34:20 +0200 Subject: cosmetic/compare: comply with strict protoype rules Empty identifier lists are an obsolescent feature and gcc complains about them with -Wstrict-prototypes. --- compare/compare.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compare/compare.c b/compare/compare.c index 5748a76..ee1966b 100644 --- a/compare/compare.c +++ b/compare/compare.c @@ -295,7 +295,7 @@ static ASS_Track *load_track(ASS_Library *lib, return track; } -static bool out_of_memory() +static bool out_of_memory(void) { printf("Not enough memory!\n"); return false; -- cgit v1.2.3