posix_spawn.c: format fae_action anon enum more stylish

Reviewed by:	kevans, ngie (previous version)
Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
Differential revision:	https://reviews.freebsd.org/D33143
This commit is contained in:
Konstantin Belousov 2021-11-28 00:36:19 +02:00
parent f5b0083302
commit adbaf1b443

View file

@ -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 {