Grammar fix in freeClient().

This commit is contained in:
antirez 2013-12-03 13:40:41 +01:00
parent 6fc6c6bda9
commit 1ea9a283cb

View File

@ -698,7 +698,7 @@ void freeClient(redisClient *c) {
listDelNode(server.clients,ln);
}
/* When client was just unblocked because of a blocking operation,
* remove it from the list with unblocked clients. */
* remove it from the list of unblocked clients. */
if (c->flags & REDIS_UNBLOCKED) {
ln = listSearchKey(server.unblocked_clients,c);
redisAssert(ln != NULL);