From fc6071bfb38a118fd059e6f86750dfcf9580fd31 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 6 Jul 2010 05:55:41 +0200 Subject: [PATCH] systemctl: don't use UTF directly --- src/systemctl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/systemctl.c b/src/systemctl.c index 6977f85b3..9b88da153 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); } -- 2.30.2