From: Mike Yuan Date: Wed, 5 Jun 2024 17:22:11 +0000 (+0200) Subject: core/cgroup: correct macro alignment X-Git-Tag: v257-rc1~1014^2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38f3b737dc3bfc62005bd6340ef9c0d0b6c5deef;p=thirdparty%2Fsystemd.git core/cgroup: correct macro alignment --- diff --git a/src/core/cgroup.h b/src/core/cgroup.h index 1581a88cb76..d258bcb3ae4 100644 --- a/src/core/cgroup.h +++ b/src/core/cgroup.h @@ -496,10 +496,10 @@ void unit_reset_io_accounting_last(Unit *u); int unit_reset_io_accounting(Unit *u); int unit_reset_accounting(Unit *u); -#define UNIT_CGROUP_BOOL(u, name) \ - ({ \ - CGroupContext *cc = unit_get_cgroup_context(u); \ - cc ? cc->name : false; \ +#define UNIT_CGROUP_BOOL(u, name) \ + ({ \ + CGroupContext *cc = unit_get_cgroup_context(u); \ + cc ? cc->name : false; \ }) bool manager_owns_host_root_cgroup(Manager *m);