diff --git a/src/redis-cli.c b/src/redis-cli.c index dd6268fa..51b4ccc2 100644 --- a/src/redis-cli.c +++ b/src/redis-cli.c @@ -328,7 +328,7 @@ static void completionCallback(const char *buf, linenoiseCompletions *lc) { *--------------------------------------------------------------------------- */ /* Send AUTH command to the server */ -static int cliAuth() { +static int cliAuth(void) { redisReply *reply; if (config.auth == NULL) return REDIS_OK; @@ -341,7 +341,7 @@ static int cliAuth() { } /* Send SELECT dbnum to the server */ -static int cliSelect() { +static int cliSelect(void) { redisReply *reply; if (config.dbnum == 0) return REDIS_OK;