chiark / gitweb /
treewide: more log_*_errno + return simplifications
[elogind.git] / src / core / scope.c
index 19b274a267817f46f247124cb7857522b43fc84c..d33b8919568b230c1d96b7028347cf954ab80c54 100644 (file)
@@ -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)