summaryrefslogtreecommitdiff
path: root/src/slowlog.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/slowlog.c')
-rw-r--r--src/slowlog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slowlog.c b/src/slowlog.c
index a88967ae1..7df37d26e 100644
--- a/src/slowlog.c
+++ b/src/slowlog.c
@@ -127,7 +127,7 @@ void slowlogReset(void) {
/* The SLOWLOG command. Implements all the subcommands needed to handle the
* Redis slow log. */
-void slowlogCommand(redisClient *c) {
+void slowlogCommand(client *c) {
if (c->argc == 2 && !strcasecmp(c->argv[1]->ptr,"reset")) {
slowlogReset();
addReply(c,shared.ok);