From 6912a2401fd1fc671a6a5bd50d23f2c18b6c5f43 Mon Sep 17 00:00:00 2001 From: Robert Swiecki Date: Mon, 17 Feb 2020 20:33:45 +0100 Subject: [PATCH] make indent --- nsjail.cc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/nsjail.cc b/nsjail.cc index 57c462b..c9e2bca 100644 --- a/nsjail.cc +++ b/nsjail.cc @@ -235,8 +235,11 @@ static int listenMode(nsjconf_t* nsjconf) { PLOG_E("pipe"); continue; } - nsjconf->pipes.push_back( - {.sock_fd = connfd, .pipe_in = in[1], .pipe_out = out[0]}); + nsjconf->pipes.push_back({ + .sock_fd = connfd, + .pipe_in = in[1], + .pipe_out = out[0], + }); subproc::runChild(nsjconf, connfd, in[0], out[1], out[1]); close(in[0]); close(out[1]); -- 2.34.1