From 4b1ccdfd4935d842ff465f8686b085cdcd3ebc1c Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 11 Mar 2013 10:42:14 +0100 Subject: [PATCH] Make comment name match var name in activeExpireCycle(). --- src/redis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redis.c b/src/redis.c index 042ba4be..2348858c 100644 --- a/src/redis.c +++ b/src/redis.c @@ -713,7 +713,7 @@ void activeExpireCycle(void) { * expire. So after a given amount of milliseconds return to the * caller waiting for the other active expire cycle. */ iteration++; - if ((iteration & 0xf) == 0 && /* check once every 16 cycles. */ + if ((iteration & 0xf) == 0 && /* check once every 16 iterations. */ (ustime()-start) > timelimit) return; } while (expired > REDIS_EXPIRELOOKUPS_PER_CRON/4); }