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);
}