diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrc32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcrc32.c b/lib/libcrc32.c index d47a842..90b916c 100644 --- a/lib/libcrc32.c +++ b/lib/libcrc32.c @@ -94,7 +94,7 @@ static const uint32_t crc32_table[256] = { 0x2d02ef8dL }; -uint32_t crc32(uint32_t val, const void *ss, int len) +uint32_t mtd_crc32(uint32_t val, const void *ss, int len) { const unsigned char *s = ss; |