From 041ab04419235010c8f7a54f256a8701390370cd Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 14 Sep 2016 16:41:05 +0200 Subject: [PATCH] Trim comment to 80 cols. --- src/sentinel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sentinel.c b/src/sentinel.c index 235611546..1f47dd337 100644 --- a/src/sentinel.c +++ b/src/sentinel.c @@ -3674,7 +3674,7 @@ char *sentinelGetLeader(sentinelRedisInstance *master, uint64_t epoch) { serverAssert(master->flags & (SRI_O_DOWN|SRI_FAILOVER_IN_PROGRESS)); counters = dictCreate(&leaderVotesDictType,NULL); - voters = dictSize(master->sentinels)+1; /* All the other sentinels and me. */ + voters = dictSize(master->sentinels)+1; /* All the other sentinels and me.*/ /* Count other sentinels votes */ di = dictGetIterator(master->sentinels);