mirror of
https://github.com/rclone/rclone.git
synced 2025-01-05 05:49:33 +01:00
accounting: fix error count shown as checks
This commit is contained in:
parent
0ecb8bc2f9
commit
4948bfa8c5
@ -320,7 +320,7 @@ func (s *StatsInfo) String() string {
|
||||
}
|
||||
if s.checks != 0 || totalChecks != 0 {
|
||||
_, _ = fmt.Fprintf(buf, "Checks: %10d / %d, %s\n",
|
||||
s.errors, totalChecks, percent(s.checks, totalChecks))
|
||||
s.checks, totalChecks, percent(s.checks, totalChecks))
|
||||
}
|
||||
if s.deletes != 0 {
|
||||
_, _ = fmt.Fprintf(buf, "Deleted: %10d\n", s.deletes)
|
||||
|
Loading…
Reference in New Issue
Block a user