build: fix lint warning after linter upgrade

This commit is contained in:
Nick Craig-Wood
2025-12-09 16:14:26 +00:00
parent 8f29a0b0a1
commit 4ff8899b2c

View File

@@ -372,7 +372,7 @@ func (p *pipedInput) Read(b []byte) (int, error) {
return p.Reader.Read(b)
}
func (_ *pipedInput) Seek(_ int64, _ int) (int64, error) {
func (*pipedInput) Seek(int64, int) (int64, error) {
return 0, fmt.Errorf("Seek not supported")
}