diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-04-23 20:25:55 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-04-23 20:25:55 +0200 |
commit | 40d50879d9339e539a30e5d32234baffb732f0f9 (patch) | |
tree | 6eb99a62692a3f4ac1e6e38260460984fcef430c /job.c | |
parent | 5dcfe57bb1a036ba6e4af10746c42892c44f0766 (diff) |
get rid of unicode arrows, since the linux console cannot show them, not even in unicode mode
Diffstat (limited to 'job.c')
-rw-r--r-- | job.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -150,8 +150,8 @@ void job_dump(Job *j, FILE*f, const char *prefix) { assert(f); fprintf(f, - "%sā Job %u:\n" - "%s\tAction: %s ā %s\n" + "%s-> Job %u:\n" + "%s\tAction: %s -> %s\n" "%s\tState: %s\n" "%s\tForced: %s\n", prefix, j->id, @@ -464,7 +464,7 @@ int job_finish_and_invalidate(Job *j, bool success) { /* Patch restart jobs so that they become normal start jobs */ if (success && (j->type == JOB_RESTART || j->type == JOB_TRY_RESTART)) { - log_debug("Converting job %s/%s ā %s/%s", + log_debug("Converting job %s/%s -> %s/%s", j->unit->meta.id, job_type_to_string(j->type), j->unit->meta.id, job_type_to_string(JOB_START)); |