From 910384c82177bac586a6ba543d50ca6aa63b8710 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 2 May 2018 14:24:39 +0200 Subject: [PATCH] nspawn: let's make use of SPECIAL_MACHINE_SLICE macro, after all we already set it --- src/nspawn/nspawn-register.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/nspawn/nspawn-register.c b/src/nspawn/nspawn-register.c index 643e00400f..c0cdb7c0d7 100644 --- a/src/nspawn/nspawn-register.c +++ b/src/nspawn/nspawn-register.c @@ -11,6 +11,7 @@ #include "bus-unit-util.h" #include "bus-util.h" #include "nspawn-register.h" +#include "special.h" #include "stat-util.h" #include "strv.h" #include "util.h" @@ -309,7 +310,7 @@ int allocate_scope( "PIDs", "au", 1, pid, "Description", "s", description, "Delegate", "b", 1, - "Slice", "s", isempty(slice) ? "machine.slice" : slice); + "Slice", "s", isempty(slice) ? SPECIAL_MACHINE_SLICE : slice); if (r < 0) return bus_log_create_error(r); -- 2.25.1