Remove black space.

This commit is contained in:
antirez 2018-06-26 14:37:22 +02:00
parent aa5eaad48c
commit 1f1e724f47

View File

@ -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)