From 6a0b1b5b435b061b49c2555f26b0006c943dcde4 Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 2 Dec 2014 17:03:15 +0100 Subject: [PATCH] Over 80 chars comment trimmed in pfcountCommand(). --- src/hyperloglog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hyperloglog.c b/src/hyperloglog.c index 005beb18..a6cfdc74 100644 --- a/src/hyperloglog.c +++ b/src/hyperloglog.c @@ -1213,7 +1213,7 @@ void pfcountCommand(redisClient *c) { for (j = 1; j < c->argc; j++) { /* Check type and size. */ robj *o = lookupKeyRead(c->db,c->argv[j]); - if (o == NULL) continue; /* Assume empty HLL for non existing var. */ + if (o == NULL) continue; /* Assume empty HLL for non existing var.*/ if (isHLLObjectOrReply(c,o) != REDIS_OK) return; /* Merge with this HLL with our 'max' HHL by setting max[i] -- GitLab