aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2021-11-27 22:36:19 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2021-11-30 01:43:54 +0000
commitadbaf1b443c68c70911aeb62c9963dd583ec9b45 (patch)
tree9a4bbfce1ffeca67aeeec97e7e5bab73c618e0b2 /lib
parentf5b0083302edcf421265530cc01dd87c06b23af1 (diff)
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/gen/posix_spawn.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libc/gen/posix_spawn.c b/lib/libc/gen/posix_spawn.c
index 0bca52811e30..e70772e31753 100644
--- a/lib/libc/gen/posix_spawn.c
+++ b/lib/libc/gen/posix_spawn.c
@@ -62,7 +62,11 @@ struct __posix_spawn_file_actions {
typedef struct __posix_spawn_file_actions_entry {
STAILQ_ENTRY(__posix_spawn_file_actions_entry) fae_list;
- enum { FAE_OPEN, FAE_DUP2, FAE_CLOSE } fae_action;
+ enum {
+ FAE_OPEN,
+ FAE_DUP2,
+ FAE_CLOSE,
+ } fae_action;
int fae_fildes;
union {