From 7d419a51636161e0257c0ccf041b49b97fe5f219 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Mon, 13 Nov 2017 18:05:16 -0500 Subject: exec: Minor whitespace consistency fix --- exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exec.c') diff --git a/exec.c b/exec.c index 4b7ce0f..489953e 100644 --- a/exec.c +++ b/exec.c @@ -337,7 +337,7 @@ static int bfs_exec_spawn(const struct bfs_exec *execbuf) { } // Use a pipe to report errors from the child - int pipefd[2] = { -1, -1 }; + int pipefd[2] = {-1, -1}; if (pipe_cloexec(pipefd) != 0) { bfs_exec_debug(execbuf, "pipe() failed: %s\n", strerror(errno)); } -- cgit v1.2.3