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
0a5805d7
Commit
0a5805d7
authored
Jul 07, 2018
by
WuYunlong
Committed by
Salvatore Sanfilippo
Jul 09, 2018
Browse files
fix compile warning in addReplySubcommandSyntaxError
parent
cb78c842
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/networking.c
View file @
0a5805d7
...
...
@@ -570,7 +570,7 @@ void addReplySubcommandSyntaxError(client *c) {
sdstoupper
(
cmd
);
addReplyErrorFormat
(
c
,
"Unknown subcommand or wrong number of arguments for '%s'. Try %s HELP."
,
c
->
argv
[
1
]
->
ptr
,
cmd
);
(
char
*
)
c
->
argv
[
1
]
->
ptr
,
cmd
);
sdsfree
(
cmd
);
}
...
...
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