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 /console | |
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 'console')
-rw-r--r-- | console/display.c | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/console/display.c b/console/display.c index 5c821938..071cd993 100644 --- a/console/display.c +++ b/console/display.c @@ -229,43 +229,43 @@ nowait_file_changed (mach_port_t notify_port, natural_t tickno, Request *InP = &Mess.In; static const mach_msg_type_t ticknoType = { - /* msgt_name = */ 2, - /* 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 + }; static const mach_msg_type_t changeType = { - /* msgt_name = */ 2, - /* 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 }; static const mach_msg_type_t startType = { - /* msgt_name = */ 11, - /* msgt_size = */ 64, - /* msgt_number = */ 1, - /* msgt_inline = */ TRUE, - /* msgt_longform = */ FALSE, - /* msgt_deallocate = */ FALSE, - /* msgt_unused = */ 0 + .msgt_name = MACH_MSG_TYPE_INTEGER_64, + .msgt_size = 64, + .msgt_number = 1, + .msgt_inline = TRUE, + .msgt_longform = FALSE, + .msgt_deallocate = FALSE, + .msgt_unused = 0 }; static const mach_msg_type_t endType = { - /* msgt_name = */ 11, - /* msgt_size = */ 64, - /* msgt_number = */ 1, - /* msgt_inline = */ TRUE, - /* msgt_longform = */ FALSE, - /* msgt_deallocate = */ FALSE, - /* msgt_unused = */ 0 + .msgt_name = MACH_MSG_TYPE_INTEGER_64, + .msgt_size = 64, + .msgt_number = 1, + .msgt_inline = TRUE, + .msgt_longform = FALSE, + .msgt_deallocate = FALSE, + .msgt_unused = 0 }; InP->ticknoType = ticknoType; |