From b362c111daa0939f86123cb6fb82fbb389cffc7b Mon Sep 17 00:00:00 2001 From: antirez Date: Sun, 22 Jan 2012 01:40:23 +0100 Subject: [PATCH] fixed typo in hahs function seed default value. It is no longer used but fixed to retain the old constant as default anyway. --- src/dict.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dict.c b/src/dict.c index a3291375..53e16be0 100644 --- a/src/dict.c +++ b/src/dict.c @@ -85,7 +85,7 @@ unsigned int dictIdentityHashFunction(unsigned int key) return key; } -static int dict_hash_function_seed = 5183; +static int dict_hash_function_seed = 5381; void dictSetHashFunctionSeed(unsigned int seed) { dict_hash_function_seed = seed;