From e314119d14aeb67b1e2533e2af8c827a0788e8ee Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 10 Nov 2020 22:22:00 +0100 Subject: [PATCH] Doh --- src/libmain/progress-bar.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libmain/progress-bar.cc b/src/libmain/progress-bar.cc index e6ae5bd0f..4f3099334 100644 --- a/src/libmain/progress-bar.cc +++ b/src/libmain/progress-bar.cc @@ -552,10 +552,10 @@ public: if (copyPath.done || copyPath.expected) { state.statusLines.insert_or_assign(50, - fmt(ANSI_BOLD "•" ANSI_NORMAL " %s " ANSI_BOLD "Fetched" ANSI_NORMAL " %d / %d paths, %.1f / %.1f MiB %d", + fmt(ANSI_BOLD "•" ANSI_NORMAL " %s " ANSI_BOLD "Fetched" ANSI_NORMAL " %d / %d paths, %.1f / %.1f MiB", renderBar(copyPath.done, copyPath.left, copyPath.expected), copyPaths.done, copyPaths.expected, - copyPath.done / MiB, copyPath.expected / MiB, copyPath.left)); + copyPath.done / MiB, copyPath.expected / MiB)); state.statusLines.insert_or_assign(51, ""); }