]> git.saurik.com Git - redis.git/blobdiff - src/t_set.c
Use existing reply functions where possible
[redis.git] / src / t_set.c
index 17cac934c75258fa6831f1dd14d980db0825438f..e2ac5ae5378155f329f76d90d7f5c6680e959f05 100644 (file)
@@ -276,7 +276,7 @@ void scardCommand(redisClient *c) {
     if ((o = lookupKeyReadOrReply(c,c->argv[1],shared.czero)) == NULL ||
         checkType(c,o,REDIS_SET)) return;
 
-    addReplyUlong(c,setTypeSize(o));
+    addReplyLongLong(c,setTypeSize(o));
 }
 
 void spopCommand(redisClient *c) {