diff options
author | Denys Vlasenko | 2022-08-26 14:54:45 +0200 |
---|---|---|
committer | Denys Vlasenko | 2022-08-26 14:54:45 +0200 |
commit | 1a1220a5b05ca7fd86fde22c4a8bb9692a06670e (patch) | |
tree | 2d9ebbea4a7753649fc1a1b206740530916d1a3e | |
parent | b30d345cfd995f111797f3377a3caaa263616081 (diff) | |
download | busybox-1a1220a5b05ca7fd86fde22c4a8bb9692a06670e.zip busybox-1a1220a5b05ca7fd86fde22c4a8bb9692a06670e.tar.gz |
tree: unicode tweak (use normal space char, 0x20)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | miscutils/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/tree.c b/miscutils/tree.c index 10e5481..fa55696 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 #if ENABLE_UNICODE_SUPPORT if (unicode_status == UNICODE_ON) { - bar = "│ "; + bar = "│ "; mid = "├── "; end = "└── "; } |