From: Mike Yuan Date: Thu, 25 Sep 2025 20:33:19 +0000 (+0200) Subject: core/cgroup: realign macro line continuation X-Git-Tag: v257.10~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aa43c6d718576703857454c409e8ce5a25e38103;p=thirdparty%2Fsystemd.git core/cgroup: realign macro line continuation (cherry picked from commit e99f741cdf714c900fc6cafc53d19701ed6b02a1) (cherry picked from commit 7c85318b3415b65ce2e50208dfa314dc566a7bc7) --- diff --git a/src/core/cgroup.c b/src/core/cgroup.c index 7b7cc5c14c7..52d09ed1656 100644 --- a/src/core/cgroup.c +++ b/src/core/cgroup.c @@ -5412,7 +5412,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; \ @@ -5435,7 +5435,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) { \ @@ -5448,7 +5448,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; \