mirror of
https://github.com/fluencelabs/redis
synced 2025-03-17 16:10:50 +00:00
rehashing.c: Fix compile error originating from SPOP rewrite
This commit is contained in:
parent
cfe5eaaed6
commit
acb933a747
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user