socket: fix typo in union declaration
This commit is contained in:
parent
622769cdfd
commit
81978f0ba0
1 changed files with 1 additions and 1 deletions
2
socket.c
2
socket.c
|
@ -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)];
|
||||||
|
|
Loading…
Reference in a new issue