diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-10-25 00:29:05 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-11-02 11:29:59 -0600 |
commit | a581e45ae8f9bb5c6693c23c78bc070aa15d0c8a (patch) | |
tree | c881c7d827d8789d4cbdebfd8df678731afc8e6e /src/core/swap.c | |
parent | 11222d0fe0b5abb0cef65359b979e0c7f50129f3 (diff) |
unit: unify some code with new unit_new_for_name() call
Diffstat (limited to 'src/core/swap.c')
-rw-r--r-- | src/core/swap.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/core/swap.c b/src/core/swap.c index b592abb9fb..2228a254bb 100644 --- a/src/core/swap.c +++ b/src/core/swap.c @@ -381,11 +381,7 @@ static int swap_setup_unit( if (!u) { delete = true; - u = unit_new(m, sizeof(Swap)); - if (!u) - return log_oom(); - - r = unit_add_name(u, e); + r = unit_new_for_name(m, sizeof(Swap), e, &u); if (r < 0) goto fail; |