mirror of
https://github.com/bkthomps/Containers.git
synced 2025-11-16 12:34:47 +00:00
Fix missing parameter list (#147)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user