From: Mike Yuan Date: Thu, 25 Sep 2025 20:33:19 +0000 (+0200) Subject: core/cgroup: realign macro line continuation X-Git-Tag: v259-rc1~434^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e99f741cdf714c900fc6cafc53d19701ed6b02a1;p=thirdparty%2Fsystemd.git core/cgroup: realign macro line continuation --- diff --git a/src/core/cgroup.c b/src/core/cgroup.c index 2d9fca9dd1c..4e15de8e6bc 100644 --- a/src/core/cgroup.c +++ b/src/core/cgroup.c @@ -4351,7 +4351,7 @@ int cgroup_runtime_serialize(Unit *u, FILE *f, FDSet *fds) { log_unit_debug_errno(u, _deserialize_r, \ "Failed to parse \"%s=%s\", ignoring.", l, v); \ else \ - crt->target = _deserialize_r; \ + crt->target = _deserialize_r; \ } \ } \ _deserialize_matched; \ @@ -4374,7 +4374,7 @@ int cgroup_runtime_serialize(Unit *u, FILE *f, FDSet *fds) { _deserialize_matched; \ }) -#define MATCH_DESERIALIZE_METRIC(u, key, l, v, parse_func, target) \ +#define MATCH_DESERIALIZE_METRIC(u, key, l, v, parse_func, target) \ ({ \ bool _deserialize_matched = streq(l, key); \ if (_deserialize_matched) { \ @@ -4387,7 +4387,7 @@ int cgroup_runtime_serialize(Unit *u, FILE *f, FDSet *fds) { log_unit_debug_errno(u, _deserialize_r, \ "Failed to parse \"%s=%s\", ignoring.", l, v); \ else \ - crt->target = _deserialize_r; \ + crt->target = _deserialize_r; \ } \ } \ _deserialize_matched; \