diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-05-03 18:11:46 -0400 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-05-04 00:23:58 +0200 |
commit | 717897ca40be3bb78130617c8e880137eff96d96 (patch) | |
tree | ae59f7ddfced97e8020ab7af0117a49b17ddaa75 /libfshelp | |
parent | 9bbcc8265a062572e19dc18d679948ebbe892419 (diff) | |
download | hurd-717897ca40be3bb78130617c8e880137eff96d96.tar.gz hurd-717897ca40be3bb78130617c8e880137eff96d96.tar.bz2 hurd-717897ca40be3bb78130617c8e880137eff96d96.zip |
Use designated initializers when building mach_msg_type_t
Message-Id: <ZFLcIs0iwiC9kQDf@jupiter.tail36e24.ts.net>
Diffstat (limited to 'libfshelp')
-rw-r--r-- | libfshelp/start-translator-long.c | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/libfshelp/start-translator-long.c b/libfshelp/start-translator-long.c index 4bce337f..3541c681 100644 --- a/libfshelp/start-translator-long.c +++ b/libfshelp/start-translator-long.c @@ -65,43 +65,43 @@ service_fsys_startup (fshelp_open_fn_t underlying_open_fn, void *cookie, /* These should be optimized away to pure integer constants. */ const mach_msg_type_t flagsCheck = { - MACH_MSG_TYPE_INTEGER_32, /* msgt_name = */ - 32, /* msgt_size = */ - 1, /* msgt_number = */ - TRUE, /* msgt_inline = */ - FALSE, /* msgt_longform = */ - FALSE, /* msgt_deallocate = */ - 0 /* msgt_unused = */ + .msgt_name = MACH_MSG_TYPE_INTEGER_32, + .msgt_size = 32, + .msgt_number = 1, + .msgt_inline = TRUE, + .msgt_longform = FALSE, + .msgt_deallocate = FALSE, + .msgt_unused = 0 }; const mach_msg_type_t control_portCheck = { - MACH_MSG_TYPE_PORT_SEND, /* msgt_name = */ - 32, /* msgt_size = */ - 1, /* msgt_number = */ - TRUE, /* msgt_inline = */ - FALSE, /* msgt_longform = */ - FALSE, /* msgt_deallocate = */ - 0 /* msgt_unused = */ + .msgt_name = MACH_MSG_TYPE_PORT_SEND, + .msgt_size = 32, + .msgt_number = 1, + .msgt_inline = TRUE, + .msgt_longform = FALSE, + .msgt_deallocate = FALSE, + .msgt_unused = 0 }; const mach_msg_type_t RetCodeType = { - MACH_MSG_TYPE_INTEGER_32, /* msgt_name = */ - 32, /* msgt_size = */ - 1, /* msgt_number = */ - TRUE, /* msgt_inline = */ - FALSE, /* msgt_longform = */ - FALSE, /* msgt_deallocate = */ - 0 /* msgt_unused = */ + .msgt_name = MACH_MSG_TYPE_INTEGER_32, + .msgt_size = 32, + .msgt_number = 1, + .msgt_inline = TRUE, + .msgt_longform = FALSE, + .msgt_deallocate = FALSE, + .msgt_unused = 0 }; const mach_msg_type_t realnodeType = { - -1, /* msgt_name = */ - 32, /* msgt_size = */ - 1, /* msgt_number = */ - TRUE, /* msgt_inline = */ - FALSE, /* msgt_longform = */ - FALSE, /* msgt_deallocate = */ - 0 /* msgt_unused = */ + .msgt_name = (unsigned char) MACH_MSG_TYPE_POLYMORPHIC, + .msgt_size = 32, + .msgt_number = 1, + .msgt_inline = TRUE, + .msgt_longform = FALSE, + .msgt_deallocate = FALSE, + .msgt_unused = 0 }; /* Return true iff TYPE fails to match CHECK. */ |