From: Lennart Poettering Date: Wed, 17 Jan 2018 18:01:10 +0000 (+0100) Subject: cgtop: minor modernization X-Git-Tag: v237~30^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e104fb80f447646735229937671db08d469a795f;p=platform%2Fupstream%2Fsystemd.git cgtop: minor modernization --- diff --git a/src/cgtop/cgtop.c b/src/cgtop/cgtop.c index fe339eb..17facf8 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;