1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2024-12-26 01:37:12 +00:00

Merge pull request #1262 from mafgh/bytes

fix duplicate bytes in prune output
This commit is contained in:
Alexander Neumann 2017-09-22 11:59:10 +02:00
commit a4577769ae

View file

@ -122,7 +122,7 @@ func pruneRepository(gopts GlobalOptions, repo restic.Repository) error {
stats.bytes += pack.Size stats.bytes += pack.Size
blobs += len(pack.Entries) blobs += len(pack.Entries)
} }
Verbosef("repository contains %v packs (%v blobs) with %v bytes\n", Verbosef("repository contains %v packs (%v blobs) with %v\n",
len(idx.Packs), blobs, formatBytes(uint64(stats.bytes))) len(idx.Packs), blobs, formatBytes(uint64(stats.bytes)))
blobCount := make(map[restic.BlobHandle]int) blobCount := make(map[restic.BlobHandle]int)