From eb95d288984d19fe7caf259708f4b8770662b2e7 Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 5 Nov 2013 11:57:30 +0100 Subject: Pass int64_t to intsetGet() instead of long long. --- src/db.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/db.c') diff --git a/src/db.c b/src/db.c index d490e2aa2..2115515ce 100644 --- a/src/db.c +++ b/src/db.c @@ -455,7 +455,7 @@ void scanGenericCommand(redisClient *c, robj *o) { } while (cursor && listLength(keys) < count); } else if (o->type == REDIS_SET) { int pos = 0; - long long ll; + int64_t ll; while(intsetGet(o->ptr,pos++,&ll)) listAddNodeTail(keys,createStringObjectFromLongLong(ll)); -- cgit v1.2.1