From 8153be97c46dec725fdfaa3358d518ce350bb2ec Mon Sep 17 00:00:00 2001 From: Mike Yuan Date: Sun, 2 Jun 2024 06:37:08 +0800 Subject: [PATCH] core/cgroup: use > 0 comparison rather than == 1 --- src/core/cgroup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/cgroup.c b/src/core/cgroup.c index 19028b810ba..bb78ded3eb2 100644 --- a/src/core/cgroup.c +++ b/src/core/cgroup.c @@ -3549,7 +3549,7 @@ bool unit_maybe_release_cgroup(Unit *u) { * failed) we need the cgroup paths to continue to be tracked by the manager so they can be looked up * and cleaned up later. */ r = unit_cgroup_is_empty(u); - if (r == 1) { + if (r > 0) { unit_release_cgroup(u); return true; } -- 2.47.3