Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
ae5cb3f7
Commit
ae5cb3f7
authored
Apr 05, 2016
by
Dvir Volk
Committed by
antirez
May 10, 2016
Browse files
renamed RedisModule_ReplyWithNull to RM_ReplyWithNull to fix compilation
parent
2967c00c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/module.c
View file @
ae5cb3f7
...
@@ -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
R
edisModule
_ReplyWithNull
(
RedisModuleCtx
*
ctx
)
{
int
R
M
_ReplyWithNull
(
RedisModuleCtx
*
ctx
)
{
addReply
(
ctx
->
client
,
shared
.
nullbulk
);
addReply
(
ctx
->
client
,
shared
.
nullbulk
);
return
REDISMODULE_OK
;
return
REDISMODULE_OK
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment