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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user