diff options
Diffstat (limited to 'spartan/client.go')
-rw-r--r-- | spartan/client.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spartan/client.go b/spartan/client.go index aff9276..37cb45d 100644 --- a/spartan/client.go +++ b/spartan/client.go @@ -134,6 +134,6 @@ func (c Client) IsRedirect(response *types.Response) bool { type devnull struct{} -func (_ devnull) Read(p []byte) (int, error) { +func (devnull) Read(p []byte) (int, error) { return 0, nil } |