summaryrefslogtreecommitdiff
path: root/src/cgtop
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2018-02-08 18:58:35 +0100
committerLennart Poettering <lennart@poettering.net>2018-02-12 11:07:55 +0100
commit548f69375e05e048549b24118aebcd8a41451691 (patch)
treeb35b92221a4948e736a3eea7b4c6ee1b0bd87660 /src/cgtop
parent46e16b347f83d809ed3d34f26286f580dfd086ce (diff)
downloadsystemd-548f69375e05e048549b24118aebcd8a41451691.tar.gz
tree-wide: use path_hash_ops instead of string_hash_ops whenever we key by a path
Let's make use of our new hash_ops!
Diffstat (limited to 'src/cgtop')
-rw-r--r--src/cgtop/cgtop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cgtop/cgtop.c b/src/cgtop/cgtop.c
index 1a73fb099d..413946182c 100644
--- a/src/cgtop/cgtop.c
+++ b/src/cgtop/cgtop.c
@@ -928,8 +928,8 @@ int main(int argc, char *argv[]) {
} else
log_debug("Cgroup path: %s", root);
- a = hashmap_new(&string_hash_ops);
- b = hashmap_new(&string_hash_ops);
+ a = hashmap_new(&path_hash_ops);
+ b = hashmap_new(&path_hash_ops);
if (!a || !b) {
r = log_oom();
goto finish;