backup: Remove unused filename parameter from CompleteBlob callback

This commit is contained in:
Michael Eischer
2022-10-15 15:21:17 +02:00
parent 258b487d8f
commit 964977677f
3 changed files with 7 additions and 7 deletions

View File

@@ -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: