commit 29be7a3f234cbd0a1d3eda9dc83294498f77b87f parent e77f0b0b9f08d35e7ea245ab721d769f424189de Author: sin <sin@2f30.org> Date: Tue, 17 Feb 2015 09:13:11 +0000 tar: Style fix Diffstat:
M | tar.c | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tar.c b/tar.c @@ -55,9 +55,9 @@ decomp(FILE *fp) eprintf("pipe:"); pid = fork(); - if (pid < 0) + if (pid < 0) { eprintf("fork:"); - else if (!pid) { + } else if (!pid) { dup2(fileno(fp), 0); dup2(fds[1], 1); close(fds[0]);