Skip to content

Commit 59c75ba

Browse files
committed
accounting: fix error count shown as checks - fixes rclone#3814
1 parent 0ecb8bc commit 59c75ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/accounting/stats.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ func (s *StatsInfo) String() string {
320320
}
321321
if s.checks != 0 || totalChecks != 0 {
322322
_, _ = fmt.Fprintf(buf, "Checks: %10d / %d, %s\n",
323-
s.errors, totalChecks, percent(s.checks, totalChecks))
323+
s.checks, totalChecks, percent(s.checks, totalChecks))
324324
}
325325
if s.deletes != 0 {
326326
_, _ = fmt.Fprintf(buf, "Deleted: %10d\n", s.deletes)

0 commit comments

Comments
 (0)