diff options
author | Michal Schmidt <mschmidt@redhat.com> | 2014-11-28 18:23:20 +0100 |
---|---|---|
committer | Michal Schmidt <mschmidt@redhat.com> | 2014-11-28 18:24:30 +0100 |
commit | 23bbb0de4e3f85d9704a5c12a5afa2dfa0159e41 (patch) | |
tree | 28e66fb86dd0cffc3a3cca3cf234cb52c3b64ad3 /src/core/scope.c | |
parent | 5e03c6e3b517286bbd65b48d88f60e5b83721894 (diff) | |
download | systemd-23bbb0de4e3f85d9704a5c12a5afa2dfa0159e41.tar.gz |
treewide: more log_*_errno + return simplifications
Diffstat (limited to 'src/core/scope.c')
-rw-r--r-- | src/core/scope.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/scope.c b/src/core/scope.c index 19b274a267..d33b891956 100644 --- a/src/core/scope.c +++ b/src/core/scope.c @@ -289,10 +289,8 @@ static int scope_start(Unit *u) { return -ENOENT; r = unit_realize_cgroup(u); - if (r < 0) { - log_error_errno(r, "Failed to realize cgroup: %m"); - return r; - } + if (r < 0) + return log_error_errno(r, "Failed to realize cgroup: %m"); r = cg_attach_many_everywhere(u->manager->cgroup_supported, u->cgroup_path, UNIT(s)->pids); if (r < 0) |