diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-11-13 18:05:16 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-11-13 18:05:16 -0500 |
commit | 7d419a51636161e0257c0ccf041b49b97fe5f219 (patch) | |
tree | 9533afb77435d838d86c11631c43de3c87e0bd4f | |
parent | 854ddad5c464d73122c4c765fe538d9581d633d4 (diff) | |
download | bfs-7d419a51636161e0257c0ccf041b49b97fe5f219.tar.xz |
exec: Minor whitespace consistency fix
-rw-r--r-- | exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); } |