mirror of
https://github.com/restic/restic.git
synced 2025-08-14 04:27:42 +00:00
backup: Remove unused filename parameter from CompleteBlob callback
This commit is contained in:
@@ -184,7 +184,7 @@ func (p *Progress) StartFile(filename string) {
|
||||
}
|
||||
|
||||
// CompleteBlob is called for all saved blobs for files.
|
||||
func (p *Progress) CompleteBlob(filename string, bytes uint64) {
|
||||
func (p *Progress) CompleteBlob(bytes uint64) {
|
||||
select {
|
||||
case p.processedCh <- Counter{Bytes: bytes}:
|
||||
case <-p.closed:
|
||||
|
Reference in New Issue
Block a user