diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-11-14 15:23:05 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-11-15 14:47:45 +0100 |
commit | 6906ac9a6920b1849db51450df7739100c5100ed (patch) | |
tree | 67e80e4b107fa3449acc06cb6bf0a4abd0a64955 /src/cgtop/cgtop.c | |
parent | Merge pull request #14003 from keszybz/user-path-configurable (diff) | |
download | systemd-6906ac9a6920b1849db51450df7739100c5100ed.tar.xz systemd-6906ac9a6920b1849db51450df7739100c5100ed.zip |
Remove path_compare_func() alias for path_compare()
Non sunt multiplicanda entia sine necessitate.
Diffstat (limited to 'src/cgtop/cgtop.c')
-rw-r--r-- | src/cgtop/cgtop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cgtop/cgtop.c b/src/cgtop/cgtop.c index 2494c70238..de25aaae5d 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; |