1
0
mirror of https://github.com/rclone/rclone.git synced 2026-02-19 19:03:27 +00:00

build: fix lint warning after linter upgrade

This commit is contained in:
Nick Craig-Wood
2025-12-09 16:14:26 +00:00
parent e6ce9d4a98
commit 3dd0232a26

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")
}