summaryrefslogtreecommitdiff
path: root/girepository
diff options
context:
space:
mode:
authorMarco Trevisan (Treviño) <mail@3v1n0.net>2022-10-06 04:04:51 +0200
committerMarco Trevisan (Treviño) <mail@3v1n0.net>2022-10-06 04:09:09 +0200
commitc6d9442c2d93d43248cbb455d0badad53083fa81 (patch)
tree087fe876bd6b3b637a0600e7d03d98f9d10c1672 /girepository
parent0c297cee6158fbf2a9c517c4198f58b1e1d58b9f (diff)
downloadgobject-introspection-c6d9442c2d93d43248cbb455d0badad53083fa81.tar.gz
Add missing (void) arguments to comply with -Wstrict-prototypes
Diffstat (limited to 'girepository')
-rw-r--r--girepository/cmph/fch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/girepository/cmph/fch.c b/girepository/cmph/fch.c
index 33b959e2..f12b6fcd 100644
--- a/girepository/cmph/fch.c
+++ b/girepository/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));