From 4bf7c5d0f8c241e93e5fe52b3cb53ca3cbc183ad Mon Sep 17 00:00:00 2001 From: Matt Stancliff Date: Fri, 1 Aug 2014 21:06:26 -0400 Subject: [PATCH] Remove unused global variable It has an important name, but nothing uses it... --- src/redis.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/redis.c b/src/redis.c index 2b3cf154..48eca652 100644 --- a/src/redis.c +++ b/src/redis.c @@ -65,7 +65,6 @@ double R_Zero, R_PosInf, R_NegInf, R_Nan; /* Global vars */ struct redisServer server; /* server global state */ -struct redisCommand *commandTable; /* Our command table. *