mirror of https://github.com/rclone/rclone
build: fix lint warning after linter upgrade
This commit is contained in:
parent
8f29a0b0a1
commit
4ff8899b2c
|
|
@ -372,7 +372,7 @@ func (p *pipedInput) Read(b []byte) (int, error) {
|
||||||
return p.Reader.Read(b)
|
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")
|
return 0, fmt.Errorf("Seek not supported")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue