Fix clippy::precedence
This commit is contained in:
parent
1af1f6277e
commit
ad62b4203c
1 changed files with 1 additions and 1 deletions
|
|
@ -237,7 +237,7 @@ impl Hasher for SipHasher128 {
|
|||
|
||||
if self.ntail != 0 {
|
||||
needed = 8 - self.ntail;
|
||||
self.tail |= unsafe { u8to64_le(msg, 0, cmp::min(length, needed)) } << 8 * self.ntail;
|
||||
self.tail |= unsafe { u8to64_le(msg, 0, cmp::min(length, needed)) } << (8 * self.ntail);
|
||||
if length < needed {
|
||||
self.ntail += length;
|
||||
return
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue