diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2016-02-11 19:02:54 +0100 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2016-02-11 19:04:54 +0100 |
commit | 9e4942ed5a82447f324fa46fbce839104d1ce0ea (patch) | |
tree | 4ea85aeafddccf05449d4d44669f2aae8f95c2f0 | |
parent | 95adafc428b5b4be0ddd4d43a7b96658390388bc (diff) |
core: use correct enum
from e903182e5b0daa941de47a9c08c824106cec7fe0
-rw-r--r-- | src/core/path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/path.c b/src/core/path.c index 460c1d3bf2..6ac9b8b90d 100644 --- a/src/core/path.c +++ b/src/core/path.c @@ -476,7 +476,7 @@ static void path_enter_running(Path *p) { trigger = UNIT_TRIGGER(UNIT(p)); if (!trigger) { log_unit_error(UNIT(p), "Unit to trigger vanished."); - path_enter_dead(p, TIMER_FAILURE_RESOURCES); + path_enter_dead(p, PATH_FAILURE_RESOURCES); return; } |