diff options
Diffstat (limited to 'lib_generic/crc32.c')
-rw-r--r-- | lib_generic/crc32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib_generic/crc32.c b/lib_generic/crc32.c index 57c6d66d396..64f66ed6fb1 100644 --- a/lib_generic/crc32.c +++ b/lib_generic/crc32.c @@ -54,7 +54,7 @@ local void make_crc_table() { uint32_t c; int n, k; - uLong poly; /* polynomial exclusive-or pattern */ + uLong poly; /* polynomial exclusive-or pattern */ /* terms of polynomial defining this crc (except x^32): */ static const Byte p[] = {0,1,2,4,5,7,8,10,11,12,16,22,23,26}; @@ -220,7 +220,7 @@ uint32_t ZEXPORT crc32_wd (uint32_t crc, WATCHDOG_RESET (); } #else - crc = crc32 (crc, buf, len); + crc = crc32 (crc, buf, len); #endif return crc; |