chiark / gitweb /
mount: use DEFINE_TRIVIAL_CLEANUP_FUNC
[elogind.git] / src / core / scope.c
index abadd1f82714a8a73a70189c8435c01b71973bb0..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)