From 7e8a8bfb14d7f4280261346b333af672d5fa916c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Thu, 6 Oct 2022 04:04:51 +0200 Subject: [PATCH] Add missing (void) arguments to comply with -Wstrict-prototypes --- cmph/fch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmph/fch.c b/cmph/fch.c index 33b959e24..f12b6fcd2 100644 --- a/cmph/fch.c +++ b/cmph/fch.c @@ -21,7 +21,7 @@ static cmph_uint8 check_for_collisions_h2(fch_config_data_t *fch, fch_buckets_t static void permut(cmph_uint32 * vector, cmph_uint32 n); static cmph_uint8 searching(fch_config_data_t *fch, fch_buckets_t *buckets, cmph_uint32 *sorted_indexes); -fch_config_data_t *fch_config_new() +fch_config_data_t *fch_config_new(void) { fch_config_data_t *fch; fch = (fch_config_data_t *)malloc(sizeof(fch_config_data_t));