diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-07-06 05:55:41 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-07-06 05:55:41 +0200 |
commit | fc6071bfb38a118fd059e6f86750dfcf9580fd31 (patch) | |
tree | a26e7c4c7fa9c8a832e153196f7cd0f8a1778987 | |
parent | 5f75059770f5faacfd52596d1a612bffcdd87187 (diff) |
systemctl: don't use UTF directly
-rw-r--r-- | src/systemctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/systemctl.c b/src/systemctl.c index 6977f85b3f..9b88da1538 100644 --- a/src/systemctl.c +++ b/src/systemctl.c @@ -951,7 +951,7 @@ static void show_cgroup(const char *name) { if (!f) return; - printf("\t\t │\n"); + printf("\t\t \342\224\202\n"); while (!feof(f)) { unsigned long ul; @@ -965,7 +965,7 @@ static void show_cgroup(const char *name) { if (last > 0) { char *t = NULL; get_process_cmdline(last, 60, &t); - printf("\t\t ├ %lu %s\n", (unsigned long) last, strna(t)); + printf("\t\t \342\224\234 %lu %s\n", (unsigned long) last, strna(t)); free(t); } @@ -975,7 +975,7 @@ static void show_cgroup(const char *name) { if (last > 0) { char *t = NULL; get_process_cmdline(last, 60, &t); - printf("\t\t └ %lu %s\n", (unsigned long) last, strna(t)); + printf("\t\t \342\224\224 %lu %s\n", (unsigned long) last, strna(t)); free(t); } |