diff options
author | Lennart Poettering <lennart@poettering.net> | 2018-01-17 19:01:10 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2018-01-22 16:26:55 +0100 |
commit | e104fb80f447646735229937671db08d469a795f (patch) | |
tree | 1e65964628d56f0e6c503030c39d928ceb07d0f7 /src/cgtop | |
parent | 00b5974f70f566d52400e20139448cec08a60c7c (diff) | |
download | systemd-e104fb80f447646735229937671db08d469a795f.tar.gz |
cgtop: minor modernization
Diffstat (limited to 'src/cgtop')
-rw-r--r-- | src/cgtop/cgtop.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cgtop/cgtop.c b/src/cgtop/cgtop.c index fe339eb493..17facf85b6 100644 --- a/src/cgtop/cgtop.c +++ b/src/cgtop/cgtop.c @@ -41,6 +41,7 @@ #include "path-util.h" #include "process-util.h" #include "stdio-util.h" +#include "strv.h" #include "terminal-util.h" #include "unit-name.h" #include "util.h" @@ -212,7 +213,7 @@ static int process( if (g->n_tasks > 0) g->n_tasks_valid = true; - } else if (streq(controller, "cpu") || streq(controller, "cpuacct")) { + } else if (STR_IN_SET(controller, "cpu", "cpuacct")) { _cleanup_free_ char *p = NULL, *v = NULL; uint64_t new_usage; nsec_t timestamp; |