aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2022-08-26 14:54:45 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2022-08-26 14:54:45 +0200
commit1a1220a5b05ca7fd86fde22c4a8bb9692a06670e (patch)
tree2d9ebbea4a7753649fc1a1b206740530916d1a3e
parentb30d345cfd995f111797f3377a3caaa263616081 (diff)
downloadbusybox-w32-1a1220a5b05ca7fd86fde22c4a8bb9692a06670e.tar.gz
busybox-w32-1a1220a5b05ca7fd86fde22c4a8bb9692a06670e.tar.bz2
busybox-w32-1a1220a5b05ca7fd86fde22c4a8bb9692a06670e.zip
tree: unicode tweak (use normal space char, 0x20)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--miscutils/tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/tree.c b/miscutils/tree.c
index 10e5481c4..fa55696c6 100644
--- a/miscutils/tree.c
+++ b/miscutils/tree.c
@@ -33,7 +33,7 @@ static void tree_print(unsigned count[2], const char* directory_name, char* pref
33 33
34#if ENABLE_UNICODE_SUPPORT 34#if ENABLE_UNICODE_SUPPORT
35 if (unicode_status == UNICODE_ON) { 35 if (unicode_status == UNICODE_ON) {
36 bar = "│   "; 36 bar = "│ ";
37 mid = "├── "; 37 mid = "├── ";
38 end = "└── "; 38 end = "└── ";
39 } 39 }