Commit ae5cb3f7 authored by Dvir Volk's avatar Dvir Volk Committed by antirez
Browse files

renamed RedisModule_ReplyWithNull to RM_ReplyWithNull to fix compilation

parent 2967c00c
...@@ -465,7 +465,7 @@ int RM_ReplyWithString(RedisModuleCtx *ctx, RedisModuleString *str) { ...@@ -465,7 +465,7 @@ int RM_ReplyWithString(RedisModuleCtx *ctx, RedisModuleString *str) {
} }
/* Reply with NULL. */ /* Reply with NULL. */
int RedisModule_ReplyWithNull(RedisModuleCtx *ctx) { int RM_ReplyWithNull(RedisModuleCtx *ctx) {
addReply(ctx->client,shared.nullbulk); addReply(ctx->client,shared.nullbulk);
return REDISMODULE_OK; return REDISMODULE_OK;
} }
......
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