From 1acb5435768854039b35c43bc289fbb686b8bf5f Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 25 Feb 2013 11:40:21 +0100 Subject: [PATCH] A comment in main() clarified. --- src/redis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redis.c b/src/redis.c index 175825cd7..b6421f825 100644 --- a/src/redis.c +++ b/src/redis.c @@ -2735,7 +2735,7 @@ int main(int argc, char **argv) { redisAsciiArt(); if (!server.sentinel_mode) { - /* Things only needed when not running in Sentinel mode. */ + /* Things not needed when running in Sentinel mode. */ redisLog(REDIS_WARNING,"Server started, Redis version " REDIS_VERSION); #ifdef __linux__ linuxOvercommitMemoryWarning();