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
This commit is contained in:
David Elliott 2004-08-08 05:37:57 +00:00
parent ac8c7f4923
commit 3e637936e5

View 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 ;