fixup 438f950be3: forgotten ErrorCount in printf

This commit is contained in:
Christian Schwarz 2018-10-21 18:18:42 +02:00
parent 94427d334b
commit 36265ff349

View File

@ -430,7 +430,7 @@ func (t *tui) renderPrunerReport(r *pruner.Report) {
t.write(rightPad(fs.Filesystem, maxFSname, " ")) t.write(rightPad(fs.Filesystem, maxFSname, " "))
t.write(" ") t.write(" ")
if fs.LastError != "" { 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 continue
} }