From 1f1e724f47d42538fc77d8f8bf6d6622b204dc62 Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 26 Jun 2018 14:37:22 +0200 Subject: [PATCH] Remove black space. --- src/replication.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/replication.c b/src/replication.c index 2091476d6..a023f8175 100644 --- a/src/replication.c +++ b/src/replication.c @@ -1339,7 +1339,7 @@ char *sendSynchronousCommand(int flags, int fd, ...) { cmd = sdscatprintf(cmd,"*%zu\r\n",argslen); cmd = sdscatsds(cmd,cmdargs); sdsfree(cmdargs); - + /* Transfer command to the server. */ if (syncWrite(fd,cmd,sdslen(cmd),server.repl_syncio_timeout*1000) == -1)