From 36265ff349590260a787abc5c560c9aae588285e Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Sun, 21 Oct 2018 18:18:42 +0200 Subject: [PATCH] fixup 438f950be30dcfe52f01e2da1aecea65e4e917f2: forgotten ErrorCount in printf --- client/status.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/status.go b/client/status.go index a34ab49..b87697e 100644 --- a/client/status.go +++ b/client/status.go @@ -430,7 +430,7 @@ func (t *tui) renderPrunerReport(r *pruner.Report) { t.write(rightPad(fs.Filesystem, maxFSname, " ")) t.write(" ") if fs.LastError != "" { - t.printf("ERROR (%d): %s\n", fs.LastError) // whitespace is padding + t.printf("ERROR (%d): %s\n", fs.ErrorCount, fs.LastError) // whitespace is padding continue }