diff options
Diffstat (limited to 'startup/startup.c')
-rw-r--r-- | startup/startup.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/startup/startup.c b/startup/startup.c index e151cd2f..fd7503f4 100644 --- a/startup/startup.c +++ b/startup/startup.c @@ -633,13 +633,13 @@ mig_reply_setup ( mach_msg_header_t *out) { static const mach_msg_type_t RetCodeType = { - /* 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 + .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 }; #define InP (in) |