Fix missing parameter list (#147)

This commit is contained in:
Bailey Thompson
2020-11-26 16:02:55 -05:00
committed by GitHub
parent e31876a21d
commit d7c0177b34
2 changed files with 5 additions and 2 deletions

View File

@@ -633,8 +633,10 @@ static int compare_big_object(const void *const one, const void *const two)
return a->n - b->n;
}
static int compare_dummy()
static int compare_dummy(const void *const one, const void *const two)
{
(void) one;
(void) two;
assert(0);
}

View File

@@ -18,8 +18,9 @@ static unsigned long hash_int(const void *const key)
return hash;
}
static unsigned long bad_hash_int()
static unsigned long bad_hash_int(const void *const key)
{
(void) key;
return 5;
}