Convert leading whitespace to tabs

This commit is contained in:
sin 2015-10-08 16:15:51 +01:00
parent e51a2e6d2f
commit 435b7b5d20

View File

@ -64,9 +64,9 @@ main(int argc, char *argv[])
} }
waitpid(pid, &status, 0); waitpid(pid, &status, 0);
if (WIFSIGNALED(status)) if (WIFSIGNALED(status))
return 128 + WTERMSIG(status); return 128 + WTERMSIG(status);
if (WIFEXITED(status)) if (WIFEXITED(status))
return WEXITSTATUS(status); return WEXITSTATUS(status);
if (close(fd) < 0) if (close(fd) < 0)