From acb933a747ea5ecc85d984867e8627a813ffe2c1 Mon Sep 17 00:00:00 2001 From: Sisir Koppaka Date: Wed, 18 Feb 2015 08:16:41 -0500 Subject: [PATCH] rehashing.c: Fix compile error originating from SPOP rewrite --- utils/hashtable/rehashing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);