From 82bac1b7297fa877f1b788f8d29ac6261616715a 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 6a2e95e9d..c1b269596 100644 --- a/src/redis.c +++ b/src/redis.c @@ -66,7 +66,6 @@ double R_Zero, R_PosInf, R_NegInf, R_Nan; /* Global vars */ struct redisServer server; /* server global state */ -struct redisCommand *commandTable; /* Our command table. *