summaryrefslogtreecommitdiff
path: root/job.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-04-23 20:25:55 +0200
committerLennart Poettering <lennart@poettering.net>2010-04-23 20:25:55 +0200
commit40d50879d9339e539a30e5d32234baffb732f0f9 (patch)
tree6eb99a62692a3f4ac1e6e38260460984fcef430c /job.c
parent5dcfe57bb1a036ba6e4af10746c42892c44f0766 (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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/job.c b/job.c
index f35c91c4df..1d59bcb27f 100644
--- a/job.c
+++ b/job.c
@@ -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));