Remove dangling named return value.

pull/7371/head
rw 2016-09-27 14:18:32 -07:00
parent fcd425c8c6
commit c3fc87b619
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ func (f *FloatValue) String() string {
return fmt.Sprintf("%v %v", time.Unix(0, f.unixnano), f.value)
}
func encodeFloatBlock(buf []byte, values []Value) ([]byte, err error) {
func encodeFloatBlock(buf []byte, values []Value) ([]byte, error) {
if len(values) == 0 {
return nil, nil
}