Change CSipHasher's count variable to uint8_t

This commit is contained in:
Pieter Wuille
2020-09-10 00:21:52 -07:00
parent 564e1ab0f3
commit 812037cb80
2 changed files with 2 additions and 2 deletions

View File

@@ -49,7 +49,7 @@ CSipHasher& CSipHasher::Write(const unsigned char* data, size_t size)
{
uint64_t v0 = v[0], v1 = v[1], v2 = v[2], v3 = v[3];
uint64_t t = tmp;
int c = count;
uint8_t c = count;
while (size--) {
t |= ((uint64_t)(*(data++))) << (8 * (c % 8));