Commit 0a146a8b authored by antirez's avatar antirez
Browse files

Add useless break for uniformity / future protection.

parent bd90c99f
...@@ -140,7 +140,7 @@ char *redisProtocolToLuaType(lua_State *lua, char* reply) { ...@@ -140,7 +140,7 @@ char *redisProtocolToLuaType(lua_State *lua, char* reply) {
case '~': p = redisProtocolToLuaType_Aggregate(lua,reply,*p); break; case '~': p = redisProtocolToLuaType_Aggregate(lua,reply,*p); break;
case '_': p = redisProtocolToLuaType_Null(lua,reply); break; case '_': p = redisProtocolToLuaType_Null(lua,reply); break;
case '#': p = redisProtocolToLuaType_Bool(lua,reply,p[1]); 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; return p;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment