summaryrefslogtreecommitdiffstats
path: root/xxhash.c
diff options
context:
space:
mode:
Diffstat (limited to 'xxhash.c')
-rw-r--r--xxhash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xxhash.c b/xxhash.c
index 95a7955..32b6994 100644
--- a/xxhash.c
+++ b/xxhash.c
@@ -1,6 +1,6 @@
/*
xxHash - Fast Hash algorithm
- Copyright (C) 2012, Yann Collet.
+ Copyright (C) 2012-2013, Yann Collet.
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
Redistribution and use in source and binary forms, with or without
@@ -135,7 +135,7 @@ static inline unsigned int XXH_swap32 (unsigned int x) {
unsigned int XXH32(const void* input, int len, unsigned int seed)
{
-#if 1
+#if 0
// Simple version, good for code maintenance, but unfortunately slow for small inputs
void* state = XXH32_init(seed);
XXH32_update(state, input, len);