Apply go fix -any ./...

This commit is contained in:
Michael Eischer
2026-07-22 22:25:18 +02:00
parent d4088aa09b
commit 32e9869cc8
63 changed files with 197 additions and 197 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ type repackBlobSet interface {
Len() int
}
type LogFunc func(msg string, args ...interface{})
type LogFunc func(msg string, args ...any)
// CopyBlobs takes a list of packs together with a list of blobs contained in
// these packs. Each pack is loaded and the blobs listed in keepBlobs is saved
@@ -42,7 +42,7 @@ func CopyBlobs(
debug.Log("repacking %d packs while keeping %d blobs", len(packs), keepBlobs.Len())
if logf == nil {
logf = func(_ string, _ ...interface{}) {}
logf = func(_ string, _ ...any) {}
}
p.SetMax(uint64(len(packs)))
defer p.Done()