summaryrefslogtreecommitdiff
path: root/src/crc64.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/crc64.c')
-rw-r--r--src/crc64.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/crc64.c b/src/crc64.c
index 6c9432c4a..d4db4158e 100644
--- a/src/crc64.c
+++ b/src/crc64.c
@@ -127,9 +127,10 @@ uint64_t crc64(uint64_t crc, const unsigned char *s, uint64_t l) {
#include <stdio.h>
#define UNUSED(x) (void)(x)
-int crc64Test(int argc, char *argv[]) {
+int crc64Test(int argc, char *argv[], int accurate) {
UNUSED(argc);
UNUSED(argv);
+ UNUSED(accurate);
crc64_init();
printf("[calcula]: e9c6d914c4b8d9ca == %016" PRIx64 "\n",
(uint64_t)_crc64(0, "123456789", 9));