From 1a1220a5b05ca7fd86fde22c4a8bb9692a06670e Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 26 Aug 2022 14:54:45 +0200 Subject: [PATCH] tree: unicode tweak (use normal space char, 0x20) Signed-off-by: Denys Vlasenko --- miscutils/tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 #if ENABLE_UNICODE_SUPPORT if (unicode_status == UNICODE_ON) { - bar = "│   "; + bar = "│ "; mid = "├── "; end = "└── "; }