From 478ae7acf7f60b3ad39cb60e4a7ede730d382bb0 Mon Sep 17 00:00:00 2001 From: Wang Yaofu Date: Thu, 26 Aug 2021 09:59:41 +0800 Subject: [PATCH] Update crc32.c --- crc/crc32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crc/crc32.c b/crc/crc32.c index b352dd0..9c13b8f 100644 --- a/crc/crc32.c +++ b/crc/crc32.c @@ -7,7 +7,7 @@ ** Polynomials are represented in LSB-first form ** following parameters: ** Width : 32 bit -** Poly : 0xedb88320 (That is actually x^8 + x^5 + x^4 + 1) +** Poly : 0xedb88320 ** Output for "123456789" : 0xCBF43926 */ #include