summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSisir Koppaka <sisir.koppaka@gmail.com>2015-02-18 08:16:41 -0500
committerSisir Koppaka <sisir.koppaka@gmail.com>2015-02-18 08:16:41 -0500
commitacb933a747ea5ecc85d984867e8627a813ffe2c1 (patch)
treef69f24fa525d398a693790ce2f9e3c4794cf2f78
parentcfe5eaaed6c136f34db8ada4a704dc81491e2742 (diff)
downloadredis-acb933a747ea5ecc85d984867e8627a813ffe2c1.tar.gz
rehashing.c: Fix compile error originating from SPOP rewrite
-rw-r--r--utils/hashtable/rehashing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/hashtable/rehashing.c b/utils/hashtable/rehashing.c
index df1f52bb1..c900a8d2f 100644
--- a/utils/hashtable/rehashing.c
+++ b/utils/hashtable/rehashing.c
@@ -73,7 +73,7 @@ void stressGetKeys(dict *d, int times) {
dictEntry **des = zmalloc(sizeof(dictEntry*)*dictSize(d));
for (j = 0; j < times; j++) {
int requested = rand() % (dictSize(d)+1);
- int returned = dictGetRandomKeys(d, des, requested);
+ int returned = dictGetSomeKeys(d, des, requested);
if (requested != returned) {
printf("*** ERROR! Req: %d, Ret: %d\n", requested, returned);
exit(1);