commit 435b7b5d203e0f8a253b46596542c1c1557df787 parent e51a2e6d2fe4f3749736e21f4f735b6753788a0e Author: sin <sin@2f30.org> Date: Thu, 8 Oct 2015 16:15:51 +0100 Convert leading whitespace to tabs Diffstat:
M | flock.c | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/flock.c b/flock.c @@ -64,9 +64,9 @@ main(int argc, char *argv[]) } waitpid(pid, &status, 0); - if (WIFSIGNALED(status)) - return 128 + WTERMSIG(status); - if (WIFEXITED(status)) + if (WIFSIGNALED(status)) + return 128 + WTERMSIG(status); + if (WIFEXITED(status)) return WEXITSTATUS(status); if (close(fd) < 0)