mirror of
https://github.com/redis/go-redis.git
synced 2025-07-29 17:41:15 +03:00
Fix missing argument.
This commit is contained in:
@ -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)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user