mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
silence compiler warning
This commit is contained in:
parent
8e15d5eb3a
commit
cc74f3ade0
1 changed files with 1 additions and 1 deletions
|
|
@ -129,7 +129,7 @@ isc_crc64_update(isc_uint64_t *crc, const void *data, size_t len) {
|
|||
REQUIRE(crc != NULL);
|
||||
REQUIRE(data != NULL);
|
||||
|
||||
while (len-- > 0) {
|
||||
while (len-- > 0U) {
|
||||
i = ((int) (*crc >> 56) ^ *p++) & 0xff;
|
||||
*crc = crc64_table[i] ^ (*crc << 8);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue