Rename outdated terms (#149)

Rename terms that can be considered ableist.
This commit is contained in:
Bailey Thompson
2022-04-29 23:48:49 -04:00
committed by GitHub
parent a270dc1a1d
commit 49d7e2be77
2 changed files with 4 additions and 4 deletions

View File

@@ -633,7 +633,7 @@ static int compare_big_object(const void *const one, const void *const two)
return a->n - b->n;
}
static int compare_dummy(const void *const one, const void *const two)
static int compare_placeholder(const void *const one, const void *const two)
{
(void) one;
(void) two;
@@ -645,7 +645,7 @@ static void test_big_object(void)
{
int i;
multimap me = multimap_init(sizeof(int), sizeof(struct big_object),
compare_big_object, compare_dummy);
compare_big_object, compare_placeholder);
assert(me);
for (i = 0; i < 16; i++) {
int j;

View File

@@ -420,7 +420,7 @@ static int compare_big_object(const void *const one, const void *const two)
return a->n - b->n;
}
static int compare_dummy(const void *const one, const void *const two)
static int compare_placeholder(const void *const one, const void *const two)
{
(void) one;
(void) two;
@@ -435,7 +435,7 @@ static void test_big_object(void)
sizeof(struct big_object),
bad_hash_int,
compare_big_object,
compare_dummy);
compare_placeholder);
assert(me);
for (i = 0; i < 16; i++) {
int j;