From 441a1d7ee24823047f970e40197458db19c0985c Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Mon, 25 Oct 2010 13:36:09 +0000 Subject: [PATCH] Fix constness warning Keep using const pointers. --- lib/misc/crc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/misc/crc.c b/lib/misc/crc.c index f2f2f0615..9f95c37b7 100644 --- a/lib/misc/crc.c +++ b/lib/misc/crc.c @@ -59,8 +59,8 @@ static uint32_t _calc_crc_new(uint32_t initial, const uint8_t *buf, uint32_t siz 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605, 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d, }; - uint32_t *start = (uint32_t *) buf; - uint32_t *end = (uint32_t *) (buf + (size & 0xfffffffc)); + const uint32_t *start = (const uint32_t *) buf; + const uint32_t *end = (const uint32_t *) (buf + (size & 0xfffffffc)); uint32_t crc = initial; /* Process 4 bytes per iteration */ @@ -73,7 +73,7 @@ static uint32_t _calc_crc_new(uint32_t initial, const uint8_t *buf, uint32_t siz } /* Process any bytes left over */ - buf = (uint8_t *) start; + buf = (const uint8_t *) start; size = size & 0x3; while (size--) { crc = crc ^ *buf++; -- 2.43.5