From 3e637936e59be12938e4b020798bc1e4474cb4ba Mon Sep 17 00:00:00 2001 From: David Elliott Date: Sun, 8 Aug 2004 05:37:57 +0000 Subject: [PATCH] Added const qualifier to char* in struct service_entry git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28711 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/gsocket.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mac/carbon/gsocket.cpp b/src/mac/carbon/gsocket.cpp index 20459b7d0d..f7af7a1ca6 100644 --- a/src/mac/carbon/gsocket.cpp +++ b/src/mac/carbon/gsocket.cpp @@ -1323,9 +1323,9 @@ GSocketError GAddress_INET_SetHostAddress(GAddress *address, struct service_entry { - char * name ; + const char * name ; unsigned short port ; - char * protocol ; + const char * protocol ; } ; typedef struct service_entry service_entry ; -- 2.50.0