Commit f7dc4eb9 authored by Tarmigan Casebolt's avatar Tarmigan Casebolt Committed by Brad Fitzpatrick

image/gif: avoid unused assignment

Change-Id: Iaaecd8be9268c923f40cf0e5153cbf79f7015b8d
Reviewed-on: https://go-review.googlesource.com/13892Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent c714bbbf
......@@ -83,7 +83,7 @@ func (b blockWriter) Write(data []byte) (int, error) {
total += n
b.e.buf[0] = uint8(n)
n, b.e.err = b.e.w.Write(b.e.buf[:n+1])
_, b.e.err = b.e.w.Write(b.e.buf[:n+1])
if b.e.err != nil {
return 0, b.e.err
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment