diff options
author | Sisir Koppaka <sisir.koppaka@gmail.com> | 2015-02-18 08:16:41 -0500 |
---|---|---|
committer | Sisir Koppaka <sisir.koppaka@gmail.com> | 2015-02-18 08:16:41 -0500 |
commit | acb933a747ea5ecc85d984867e8627a813ffe2c1 (patch) | |
tree | f69f24fa525d398a693790ce2f9e3c4794cf2f78 /utils | |
parent | cfe5eaaed6c136f34db8ada4a704dc81491e2742 (diff) | |
download | redis-acb933a747ea5ecc85d984867e8627a813ffe2c1.tar.gz |
rehashing.c: Fix compile error originating from SPOP rewrite
Diffstat (limited to 'utils')
-rw-r--r-- | utils/hashtable/rehashing.c | 2 |
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); |