summaryrefslogtreecommitdiffstats
path: root/exec.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2017-11-13 18:05:16 -0500
committerTavian Barnes <tavianator@tavianator.com>2017-11-13 18:05:16 -0500
commit7d419a51636161e0257c0ccf041b49b97fe5f219 (patch)
tree9533afb77435d838d86c11631c43de3c87e0bd4f /exec.c
parent854ddad5c464d73122c4c765fe538d9581d633d4 (diff)
downloadbfs-7d419a51636161e0257c0ccf041b49b97fe5f219.tar.xz
exec: Minor whitespace consistency fix
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c2
1 files changed, 1 insertions, 1 deletions
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));
}