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
8bf433dc
Unverified
Commit
8bf433dc
authored
Jul 29, 2021
by
Yossi Gottlieb
Committed by
GitHub
Jul 29, 2021
Browse files
Clean unused var compiler warning in module test. (#9289)
parent
db415364
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/modules/blockonbackground.c
View file @
8bf433dc
...
...
@@ -248,7 +248,7 @@ int Release_RedisCommand(RedisModuleCtx *ctx, RedisModuleString **argv, int argc
RedisModuleString
*
replystr
=
argv
[
1
];
RedisModule_RetainString
(
ctx
,
replystr
);
int
err
=
RedisModule_UnblockClient
(
blocked_client
,
replystr
);
RedisModule_UnblockClient
(
blocked_client
,
replystr
);
blocked_client
=
NULL
;
RedisModule_ReplyWithSimpleString
(
ctx
,
"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