tree: unicode tweak (use normal space char, 0x20)

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2022-08-26 14:54:45 +02:00
parent b30d345cfd
commit 1a1220a5b0

View File

@ -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 = "└── ";
}