From: Lennart Poettering Date: Tue, 26 Sep 2017 20:49:09 +0000 (+0200) Subject: cgroup: IN_SET() FTW! X-Git-Tag: v235~50^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4724964040c0c054853a2ceb907e57ed3e663dae;p=thirdparty%2Fsystemd.git cgroup: IN_SET() FTW! --- diff --git a/src/core/cgroup.c b/src/core/cgroup.c index c68ef5372c3..85f549c4c42 100644 --- a/src/core/cgroup.c +++ b/src/core/cgroup.c @@ -1884,7 +1884,7 @@ static int on_cgroup_inotify_event(sd_event_source *s, int fd, uint32_t revents, l = read(fd, &buffer, sizeof(buffer)); if (l < 0) { - if (errno == EINTR || errno == EAGAIN) + if (IN_SET(errno, EINTR, EAGAIN)) return 0; return log_error_errno(errno, "Failed to read control group inotify events: %m");