core/cgroup: correct macro alignment

This commit is contained in:
Mike Yuan 2024-06-05 19:22:11 +02:00
parent b268a71069
commit 38f3b737dc
No known key found for this signature in database
GPG key ID: 417471C0A40F58B3

View file

@ -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);