From cc74f3ade082e49accc81175f8fd842743589703 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Wed, 12 Jun 2013 11:57:52 +1000 Subject: [PATCH] silence compiler warning --- lib/isc/crc64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/isc/crc64.c b/lib/isc/crc64.c index cfabc9800d..5c158f3175 100644 --- a/lib/isc/crc64.c +++ b/lib/isc/crc64.c @@ -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); }