Commit acb933a7 authored by Sisir Koppaka's avatar Sisir Koppaka
Browse files

rehashing.c: Fix compile error originating from SPOP rewrite

parent cfe5eaae
...@@ -73,7 +73,7 @@ void stressGetKeys(dict *d, int times) { ...@@ -73,7 +73,7 @@ void stressGetKeys(dict *d, int times) {
dictEntry **des = zmalloc(sizeof(dictEntry*)*dictSize(d)); dictEntry **des = zmalloc(sizeof(dictEntry*)*dictSize(d));
for (j = 0; j < times; j++) { for (j = 0; j < times; j++) {
int requested = rand() % (dictSize(d)+1); int requested = rand() % (dictSize(d)+1);
int returned = dictGetRandomKeys(d, des, requested); int returned = dictGetSomeKeys(d, des, requested);
if (requested != returned) { if (requested != returned) {
printf("*** ERROR! Req: %d, Ret: %d\n", requested, returned); printf("*** ERROR! Req: %d, Ret: %d\n", requested, returned);
exit(1); exit(1);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment