]> git.saurik.com Git - wxWidgets.git/commitdiff
Added const qualifier to char* in struct service_entry
authorDavid Elliott <dfe@tgwbd.org>
Sun, 8 Aug 2004 05:37:57 +0000 (05:37 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Sun, 8 Aug 2004 05:37:57 +0000 (05:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28711 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/gsocket.cpp

index 20459b7d0dcf7fd875efffb35b81baf29fcfc425..f7af7a1ca6cf6834a8eb85f02c8ba6ccca598885 100644 (file)
@@ -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 ;