diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-10-27 23:02:54 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-10-27 23:02:54 -0400 |
commit | 127d5fd1563a74411aaceeadd251f98fd52216d7 (patch) | |
tree | 03ee9e52fc3027e46bab315a132cba4c9cac0a91 /src/core/job.c | |
parent | 2de51fdc5218d6c4f148989f8907cf0fc842abea (diff) |
manager: convert ephemeral to enum
In preparation for subsequent changes.
Diffstat (limited to 'src/core/job.c')
-rw-r--r-- | src/core/job.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/job.c b/src/core/job.c index aa205ba781..eaa4bb17fc 100644 --- a/src/core/job.c +++ b/src/core/job.c @@ -639,7 +639,7 @@ static void job_print_status_message(Unit *u, JobType t, JobResult result) { manager_flip_auto_status(u->manager, true); unit_status_printf(u, ANSI_HIGHLIGHT_RED_ON "FAILED" ANSI_HIGHLIGHT_OFF, format); - manager_status_printf(u->manager, false, NULL, + manager_status_printf(u->manager, STATUS_TYPE_NORMAL, NULL, "See \"systemctl status %s%s%s\" for details.", quotes ? "'" : "", u->id, quotes ? "'" : ""); break; |