From 02cd545f7d77c03171955e3d6cd84a623371a301 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 c4b6b4c7..3c9c6203 100644 --- a/src/redis.c +++ b/src/redis.c @@ -2676,7 +2676,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();