From 5a17a4debf5fdb649ae3911f1e3679f4fcb97f0f Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Sun, 22 Nov 2020 00:24:17 +0100 Subject: proc: Fix warning * proc/stubs.c (send_signal): Add missing warning in union inside mach_msg_header_t. --- proc/stubs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'proc/stubs.c') diff --git a/proc/stubs.c b/proc/stubs.c index e0ab96eb..b5f9d09b 100644 --- a/proc/stubs.c +++ b/proc/stubs.c @@ -91,7 +91,7 @@ send_signal (mach_port_t msgport, MACH_MSG_TYPE_MAKE_SEND_ONCE)), /* msgh_bits */ sizeof message, /* msgh_size */ msgport, /* msgh_remote_port */ - MACH_PORT_NULL, /* msgh_local_port */ + { MACH_PORT_NULL }, /* msgh_local_port */ 0, /* msgh_seqno */ RPCID_SIG_POST, /* msgh_id */ }, -- cgit v1.2.3