Fix missing argument.

This commit is contained in:
Robert 2015-09-01 13:27:19 +08:00
parent 152c38c687
commit 5a976d17b8
1 changed files with 1 additions and 1 deletions

View File

@ -378,7 +378,7 @@ func (cmd *BoolCmd) parseReply(rd *bufio.Reader) error {
cmd.val = bytes.Equal(vv, ok) cmd.val = bytes.Equal(vv, ok)
return nil return nil
default: default:
return fmt.Errorf("got %T, wanted int64 or string") return fmt.Errorf("got %T, wanted int64 or string", v)
} }
} }