make indent

This commit is contained in:
Robert Swiecki 2020-02-17 20:33:45 +01:00
parent a47123b8a7
commit 6912a2401f

View File

@ -235,8 +235,11 @@ static int listenMode(nsjconf_t* nsjconf) {
PLOG_E("pipe"); PLOG_E("pipe");
continue; continue;
} }
nsjconf->pipes.push_back( nsjconf->pipes.push_back({
{.sock_fd = connfd, .pipe_in = in[1], .pipe_out = out[0]}); .sock_fd = connfd,
.pipe_in = in[1],
.pipe_out = out[0],
});
subproc::runChild(nsjconf, connfd, in[0], out[1], out[1]); subproc::runChild(nsjconf, connfd, in[0], out[1], out[1]);
close(in[0]); close(in[0]);
close(out[1]); close(out[1]);