X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/4b1f6ad3e7a5c7c28618e43e7539c9a937bf8521..cceb0c5b4a24d9027abfc47924d5f93af87034b4:/src/dict.h diff --git a/src/dict.h b/src/dict.h index 0bfa0a94..3a311f17 100644 --- a/src/dict.h +++ b/src/dict.h @@ -155,7 +155,7 @@ dictEntry *dictNext(dictIterator *iter); void dictReleaseIterator(dictIterator *iter); dictEntry *dictGetRandomKey(dict *d); void dictPrintStats(dict *d); -unsigned int dictGenHashFunction(const unsigned char *buf, int len); +unsigned int dictGenHashFunction(const void *key, int len); unsigned int dictGenCaseHashFunction(const unsigned char *buf, int len); void dictEmpty(dict *d); void dictEnableResize(void);