diff --git a/cmd/restic/format.go b/cmd/restic/format.go index 1de0335c9..f915bc77e 100644 --- a/cmd/restic/format.go +++ b/cmd/restic/format.go @@ -21,7 +21,7 @@ func formatBytes(c uint64) string { case c > 1<<10: return fmt.Sprintf("%.3f KiB", b/(1<<10)) default: - return fmt.Sprintf("%dB", c) + return fmt.Sprintf("%d B", c) } }