aboutsummaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorStefan Beller <sbeller@google.com>2017-06-30 17:28:32 -0700
committerJunio C Hamano <gitster@pobox.com>2017-07-05 13:53:12 -0700
commit77bdc09786b731a9e2757a86d025e2859a5b333f (patch)
tree692e6786f32b86910a3a2e57ad487a940191a2d8 /config.c
parent0068cede4a753cec0ec5f290bacb1fb22a8f9e58 (diff)
downloadgit-77bdc09786b731a9e2757a86d025e2859a5b333f.tar.gz
git-77bdc09786b731a9e2757a86d025e2859a5b333f.tar.xz
config.c: drop hashmap_cmp_fn cast
Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'config.c')
-rw-r--r--config.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/config.c b/config.c
index 4a31e31ac..30ff70062 100644
--- a/config.c
+++ b/config.c
@@ -1754,17 +1754,19 @@ static int configset_add_value(struct config_set *cs, const char *key, const cha
}
static int config_set_element_cmp(const void *unused_cmp_data,
- const struct config_set_element *e1,
- const struct config_set_element *e2,
+ const void *entry,
+ const void *entry_or_key,
const void *unused_keydata)
{
+ const struct config_set_element *e1 = entry;
+ const struct config_set_element *e2 = entry_or_key;
+
return strcmp(e1->key, e2->key);
}
void git_configset_init(struct config_set *cs)
{
- hashmap_init(&cs->config_hash, (hashmap_cmp_fn)config_set_element_cmp,
- NULL, 0);
+ hashmap_init(&cs->config_hash, config_set_element_cmp, NULL, 0);
cs->hash_initialized = 1;
cs->list.nr = 0;
cs->list.alloc = 0;