Fix another unused piece of code

This commit is contained in:
Vitaliy Filippov
2026-05-30 16:09:48 +03:00
parent 1a511acead
commit 547a394be6
+1 -1
View File
@@ -417,5 +417,5 @@ uint32_t crc32c_pad(uint32_t prev_crc, const void *buf, size_t len, size_t left_
uint32_t crc32c_nopad(uint32_t prev_crc, const void *buf, size_t len, size_t left_pad, size_t right_pad)
{
return crc32c(0, buf, len);
return crc32c(prev_crc, buf, len);
}