From 36c216556a0de5250040d95ac8f7a8c18b8683b4 Mon Sep 17 00:00:00 2001 From: James Yonan Date: Thu, 8 May 2014 16:50:33 -0600 Subject: [PATCH] Explicitly cast the third parameter of setsockopt to const void * to avoid warning. Signed-off-by: James Yonan Acked-by: Gert Doering Message-Id: <1399589436-8730-4-git-send-email-james@openvpn.net> URL: http://article.gmane.org/gmane.network.openvpn.devel/8708 Signed-off-by: Gert Doering --- src/openvpn/socket.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openvpn/socket.h b/src/openvpn/socket.h index 4e7e7f846..793cd9fa2 100644 --- a/src/openvpn/socket.h +++ b/src/openvpn/socket.h @@ -1023,7 +1023,7 @@ static inline void link_socket_set_tos (struct link_socket *ls) { if (ls && ls->ptos_defined) - setsockopt (ls->sd, IPPROTO_IP, IP_TOS, &ls->ptos, sizeof (ls->ptos)); + setsockopt (ls->sd, IPPROTO_IP, IP_TOS, (const void *)&ls->ptos, sizeof (ls->ptos)); } #endif -- 2.47.2