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;
}
/* Resize the table to the minimal size that contains all the elements,
- * but with the invariant of a USER/BUCKETS ratio near to <= 1 */
+ * but with the invariant of a USED/BUCKETS ratio near to <= 1 */
int dictResize(dict *d)
{
int minimal;