Skip to content

Commit

Permalink
Over 80 chars comment trimmed in pfcountCommand().
Browse files Browse the repository at this point in the history
  • Loading branch information
antirez committed Dec 2, 2014
1 parent 69efb59 commit 6a0b1b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hyperloglog.c
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 6a0b1b5

Please sign in to comment.