Removes unnecessary return in `writeReleaseAsset`. This satisfies

the rules for `go vet`. Addresses issue #35

Signed-off-by: Jim Teeuwen <jimteeuwen@gmail.com>
pull/4/head
Jim Teeuwen 2014-06-09 12:31:18 +02:00
parent 17800c65a0
commit d3feb9534c
1 changed files with 0 additions and 2 deletions

View File

@ -70,8 +70,6 @@ func writeReleaseAsset(w io.Writer, c *Config, asset *Asset) error {
return compressed_memcopy(w, asset, fd)
}
}
return nil
}
func header_compressed_nomemcopy(w io.Writer) error {