Clear MSVC warnings (GH #1025)

This commit is contained in:
Jeffrey Walton 2021-04-16 06:32:10 -04:00
parent 6ca3fbda63
commit 43de471a6a
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -130,7 +130,7 @@ inline lsh_u64 loadLE64(lsh_u64 v) {
return ConditionalByteReverse(LITTLE_ENDIAN_ORDER, v);
}
lsh_u64 ROTL64(lsh_u64 x, lsh_u64 r) {
lsh_u64 ROTL64(lsh_u64 x, lsh_u32 r) {
return rotlFixed(x, r);
}