From 8acd67e1ad7abefc94d0c6bd45f94f79955c2160 Mon Sep 17 00:00:00 2001 From: Kristian Wallgren Date: Mon, 25 Dec 2023 10:32:55 +0200 Subject: [PATCH] Remove an excess space from compact layout --- src/display/utils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/display/utils.cc b/src/display/utils.cc index 5a5ae8fce..1377ae5d9 100644 --- a/src/display/utils.cc +++ b/src/display/utils.cc @@ -222,7 +222,7 @@ print_download_status(char* first, char* last, core::Download* d) { char* print_download_column_compact(char* first, char* last) { first = print_buffer(first, last, " %-64.64s", "Name"); - first = print_buffer(first, last, "| Status | Downloaded | Size | Done | Up Rate | Down Rate | Uploaded | ETA | Ratio| Misc "); + first = print_buffer(first, last, "| Status | Downloaded | Size | Done | Up Rate | Down Rate | Uploaded | ETA | Ratio| Misc "); if (first > last) throw torrent::internal_error("print_download_column_compact(...) wrote past end of the buffer.");