mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
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:
parent
f5b0083302
commit
adbaf1b443
1 changed files with 5 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue