summaryrefslogtreecommitdiff
path: root/openbsd-compat/bsd-waitpid.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2021-04-03 17:47:37 +1100
committerDamien Miller <djm@mindrot.org>2021-04-03 17:47:37 +1100
commit57ed647ee07bb883a2f2264231bcd1df6a5b9392 (patch)
treeb6857717f688761bc7c4891ece4b23a4413076fa /openbsd-compat/bsd-waitpid.h
parent31d8d231eb9377df474746a822d380c5d68d7ad6 (diff)
downloadopenssh-git-57ed647ee07bb883a2f2264231bcd1df6a5b9392.tar.gz
polish whitespace for portable files
Diffstat (limited to 'openbsd-compat/bsd-waitpid.h')
-rw-r--r--openbsd-compat/bsd-waitpid.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsd-compat/bsd-waitpid.h b/openbsd-compat/bsd-waitpid.h
index b551268a..bd61b690 100644
--- a/openbsd-compat/bsd-waitpid.h
+++ b/openbsd-compat/bsd-waitpid.h
@@ -40,7 +40,7 @@
#define WEXITSTATUS(w) (int)(WIFEXITED(w) ? ((_W_INT(w) >> 8) & 0377) : -1)
#define WTERMSIG(w) (int)(WIFSIGNALED(w) ? (_W_INT(w) & 0177) : -1)
#define WCOREFLAG 0x80
-#define WCOREDUMP(w) ((_W_INT(w)) & WCOREFLAG)
+#define WCOREDUMP(w) ((_W_INT(w)) & WCOREFLAG)
/* Prototype */
pid_t waitpid(int, int *, int);