summaryrefslogtreecommitdiff
path: root/crc32c.h
diff options
context:
space:
mode:
Diffstat (limited to 'crc32c.h')
-rw-r--r--crc32c.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crc32c.h b/crc32c.h
index 27f298a8..7f12e770 100644
--- a/crc32c.h
+++ b/crc32c.h
@@ -22,7 +22,7 @@
#include "kerncompat.h"
u32 crc32c_le(u32 seed, unsigned char const *data, size_t length);
-int crc32c_optimization_init(void);
+void crc32c_optimization_init(void);
#define crc32c(seed, data, length) crc32c_le(seed, (unsigned char const *)data, length)
#define btrfs_crc32c crc32c