From 49d7e2be7768adcb55dc986656efad9050aec127 Mon Sep 17 00:00:00 2001 From: Bailey Thompson Date: Fri, 29 Apr 2022 23:48:49 -0400 Subject: [PATCH] Rename outdated terms (#149) Rename terms that can be considered ableist. --- tst/test_multimap.c | 4 ++-- tst/test_unordered_multimap.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tst/test_multimap.c b/tst/test_multimap.c index fa82a91..cca520d 100644 --- a/tst/test_multimap.c +++ b/tst/test_multimap.c @@ -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; diff --git a/tst/test_unordered_multimap.c b/tst/test_unordered_multimap.c index d21a14b..ac73426 100644 --- a/tst/test_unordered_multimap.c +++ b/tst/test_unordered_multimap.c @@ -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;