summaryrefslogtreecommitdiff
path: root/src/crc64.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/crc64.c')
-rw-r--r--src/crc64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crc64.c b/src/crc64.c
index d4db4158e..73e039145 100644
--- a/src/crc64.c
+++ b/src/crc64.c
@@ -127,10 +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 accurate) {
+int crc64Test(int argc, char *argv[], int flags) {
UNUSED(argc);
UNUSED(argv);
- UNUSED(accurate);
+ UNUSED(flags);
crc64_init();
printf("[calcula]: e9c6d914c4b8d9ca == %016" PRIx64 "\n",
(uint64_t)_crc64(0, "123456789", 9));