From: Zbigniew Jędrzejewski-Szmek Date: Thu, 14 Nov 2019 14:23:05 +0000 (+0100) Subject: Remove path_compare_func() alias for path_compare() X-Git-Tag: v244-rc1~26^2~2 X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fsystemd.git;a=commitdiff_plain;h=6906ac9a6920b1849db51450df7739100c5100ed Remove path_compare_func() alias for path_compare() Non sunt multiplicanda entia sine necessitate. --- diff --git a/src/basic/hash-funcs.c b/src/basic/hash-funcs.c index 11cd371fad4..fce339512c6 100644 --- a/src/basic/hash-funcs.c +++ b/src/basic/hash-funcs.c @@ -52,11 +52,7 @@ void path_hash_func(const char *q, struct siphash *state) { } } -int path_compare_func(const char *a, const char *b) { - return path_compare(a, b); -} - -DEFINE_HASH_OPS(path_hash_ops, char, path_hash_func, path_compare_func); +DEFINE_HASH_OPS(path_hash_ops, char, path_hash_func, path_compare); void trivial_hash_func(const void *p, struct siphash *state) { siphash24_compress(&p, sizeof(p), state); diff --git a/src/basic/hash-funcs.h b/src/basic/hash-funcs.h index 0d2d4283893..7bb5d1cd021 100644 --- a/src/basic/hash-funcs.h +++ b/src/basic/hash-funcs.h @@ -79,7 +79,6 @@ extern const struct hash_ops string_hash_ops; extern const struct hash_ops string_hash_ops_free_free; void path_hash_func(const char *p, struct siphash *state); -int path_compare_func(const char *a, const char *b) _pure_; extern const struct hash_ops path_hash_ops; /* This will compare the passed pointers directly, and will not dereference them. This is hence not useful for strings diff --git a/src/cgtop/cgtop.c b/src/cgtop/cgtop.c index 2494c70238c..de25aaae5d1 100644 --- a/src/cgtop/cgtop.c +++ b/src/cgtop/cgtop.c @@ -897,7 +897,7 @@ static const char* counting_what(void) { return "userspace processes (excl. kernel)"; } -DEFINE_PRIVATE_HASH_OPS_WITH_VALUE_DESTRUCTOR(group_hash_ops, char, path_hash_func, path_compare_func, Group, group_free); +DEFINE_PRIVATE_HASH_OPS_WITH_VALUE_DESTRUCTOR(group_hash_ops, char, path_hash_func, path_compare, Group, group_free); static int run(int argc, char *argv[]) { _cleanup_hashmap_free_ Hashmap *a = NULL, *b = NULL;