Commit 556d593d authored by antirez's avatar antirez
Browse files

Remove useless space.

parent d5ecedd1
...@@ -1511,7 +1511,7 @@ int moduleUnload(sds name) { ...@@ -1511,7 +1511,7 @@ int moduleUnload(sds name) {
while ((de = dictNext(di)) != NULL) { while ((de = dictNext(di)) != NULL) {
struct redisCommand *cmd = dictGetVal(de); struct redisCommand *cmd = dictGetVal(de);
if (cmd->proc == RedisModuleCommandDispatcher) { if (cmd->proc == RedisModuleCommandDispatcher) {
RedisModuleCommandProxy *cp = RedisModuleCommandProxy *cp =
(void*)(unsigned long)cmd->getkeys_proc; (void*)(unsigned long)cmd->getkeys_proc;
sds cmdname = cp->rediscmd->name; sds cmdname = cp->rediscmd->name;
if (cp->module == module) { if (cp->module == module) {
......
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