From 0a146a8be4aea201351d4292a936bbf508c48d4b Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 20 Sep 2019 11:18:59 +0200 Subject: [PATCH] Add useless break for uniformity / future protection. --- src/scripting.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripting.c b/src/scripting.c index fa896de21..9ac8af2e7 100644 --- a/src/scripting.c +++ b/src/scripting.c @@ -140,7 +140,7 @@ char *redisProtocolToLuaType(lua_State *lua, char* reply) { case '~': p = redisProtocolToLuaType_Aggregate(lua,reply,*p); break; case '_': p = redisProtocolToLuaType_Null(lua,reply); break; case '#': p = redisProtocolToLuaType_Bool(lua,reply,p[1]); break; - case ',': p = redisProtocolToLuaType_Double(lua,reply); + case ',': p = redisProtocolToLuaType_Double(lua,reply); break; } return p; }