summaryrefslogtreecommitdiff
path: root/src/core/slice.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2016-10-25 00:29:05 +0200
committerLennart Poettering <lennart@poettering.net>2016-11-02 11:29:59 -0600
commita581e45ae8f9bb5c6693c23c78bc070aa15d0c8a (patch)
treec881c7d827d8789d4cbdebfd8df678731afc8e6e /src/core/slice.c
parent11222d0fe0b5abb0cef65359b979e0c7f50129f3 (diff)
unit: unify some code with new unit_new_for_name() call
Diffstat (limited to 'src/core/slice.c')
-rw-r--r--src/core/slice.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/core/slice.c b/src/core/slice.c
index c505fa1916..ed5d3fd701 100644
--- a/src/core/slice.c
+++ b/src/core/slice.c
@@ -299,16 +299,9 @@ static void slice_enumerate(Manager *m) {
u = manager_get_unit(m, SPECIAL_ROOT_SLICE);
if (!u) {
- u = unit_new(m, sizeof(Slice));
- if (!u) {
- log_oom();
- return;
- }
-
- r = unit_add_name(u, SPECIAL_ROOT_SLICE);
+ r = unit_new_for_name(m, sizeof(Slice), SPECIAL_ROOT_SLICE, &u);
if (r < 0) {
- unit_free(u);
- log_error_errno(r, "Failed to add the " SPECIAL_ROOT_SLICE " name: %m");
+ log_error_errno(r, "Failed to allocate the special " SPECIAL_ROOT_SLICE " unit: %m");
return;
}
}