From: Thomas Hindoe Paaboel Andersen Date: Tue, 28 Apr 2015 17:02:49 +0000 (+0200) Subject: scope: use correct enum type X-Git-Tag: v220~260 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=68a01fb658c926b527bd58da94467903feb5d1d0;p=thirdparty%2Fsystemd.git scope: use correct enum type --- diff --git a/src/core/scope.c b/src/core/scope.c index 1848641d811..cbfa3369ab9 100644 --- a/src/core/scope.c +++ b/src/core/scope.c @@ -293,7 +293,7 @@ static int scope_start(Unit *u) { r = unit_attach_pids_to_cgroup(u); if (r < 0) { log_unit_warning_errno(UNIT(s)->id, r, "%s: Failed to add PIDs to scope's control group: %m", UNIT(s)->id); - scope_enter_dead(s, SERVICE_FAILURE_RESOURCES); + scope_enter_dead(s, SCOPE_FAILURE_RESOURCES); return r; }