socket: fix typo in union declaration

This commit is contained in:
Miroslav Lichvar 2019-08-06 17:50:37 +02:00
parent 622769cdfd
commit 81978f0ba0

View file

@ -61,7 +61,7 @@ struct Message {
union { union {
NTP_Receive_Buffer ntp_msg; NTP_Receive_Buffer ntp_msg;
CMD_Request cmd_request; CMD_Request cmd_request;
CMD_Request cmd_reply; CMD_Reply cmd_reply;
} msg_buf; } msg_buf;
/* Aligned buffer for control messages */ /* Aligned buffer for control messages */
struct cmsghdr cmsg_buf[CMSG_BUF_SIZE / sizeof (struct cmsghdr)]; struct cmsghdr cmsg_buf[CMSG_BUF_SIZE / sizeof (struct cmsghdr)];