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
f8fd6639
Unverified
Commit
f8fd6639
authored
May 25, 2018
by
Salvatore Sanfilippo
Committed by
GitHub
May 25, 2018
Browse files
Merge pull request #4948 from soloestoy/avoid-warning-stream
avoid warning in t_stream.c
parents
2bd36616
c2d7e6ce
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/t_stream.c
View file @
f8fd6639
...
...
@@ -1593,7 +1593,7 @@ NULL
* acknowledged, that is, the IDs we were actually able to resolve in the PEL.
*/
void
xackCommand
(
client
*
c
)
{
streamCG
*
group
;
streamCG
*
group
=
NULL
;
robj
*
o
=
lookupKeyRead
(
c
->
db
,
c
->
argv
[
1
]);
if
(
o
)
{
if
(
checkType
(
c
,
o
,
OBJ_STREAM
))
return
;
/* Type error. */
...
...
@@ -1832,7 +1832,7 @@ void xpendingCommand(client *c) {
* successfully claimed, so that the caller is able to understand
* what messages it is now in charge of. */
void
xclaimCommand
(
client
*
c
)
{
streamCG
*
group
;
streamCG
*
group
=
NULL
;
robj
*
o
=
lookupKeyRead
(
c
->
db
,
c
->
argv
[
1
]);
long
long
minidle
;
/* Minimum idle time argument. */
long
long
retrycount
=
-
1
;
/* -1 means RETRYCOUNT option not given. */
...
...
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