Remove black space.

This commit is contained in:
antirez 2018-06-26 14:37:22 +02:00
parent 6cf68deebb
commit bcbb9b71f8

View File

@ -1339,7 +1339,7 @@ char *sendSynchronousCommand(int flags, int fd, ...) {
cmd = sdscatprintf(cmd,"*%zu\r\n",argslen); cmd = sdscatprintf(cmd,"*%zu\r\n",argslen);
cmd = sdscatsds(cmd,cmdargs); cmd = sdscatsds(cmd,cmdargs);
sdsfree(cmdargs); sdsfree(cmdargs);
/* Transfer command to the server. */ /* Transfer command to the server. */
if (syncWrite(fd,cmd,sdslen(cmd),server.repl_syncio_timeout*1000) if (syncWrite(fd,cmd,sdslen(cmd),server.repl_syncio_timeout*1000)
== -1) == -1)