From: Vadim Zeitlin Date: Sun, 10 Aug 2003 16:22:08 +0000 (+0000) Subject: parameters must have names in C X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4bad920dbf9d63c9fb0f1508034736a10cf4eba4 parameters must have names in C git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22740 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/gsocket.c b/src/mac/carbon/gsocket.c index c01b1c4ec1..9e3ba3079a 100644 --- a/src/mac/carbon/gsocket.c +++ b/src/mac/carbon/gsocket.c @@ -196,7 +196,7 @@ static void SetDefaultEndpointModes(EndpointRef ep , void *data ) /* Global initialisers */ -void GSocket_SetGUIFunctions(struct GSocketGUIFunctionsTable *) +void GSocket_SetGUIFunctions(struct GSocketGUIFunctionsTable *table) { // do nothing, wxMac doesn't have wxBase-GUI separation yet } diff --git a/src/mac/gsocket.c b/src/mac/gsocket.c index c01b1c4ec1..9e3ba3079a 100644 --- a/src/mac/gsocket.c +++ b/src/mac/gsocket.c @@ -196,7 +196,7 @@ static void SetDefaultEndpointModes(EndpointRef ep , void *data ) /* Global initialisers */ -void GSocket_SetGUIFunctions(struct GSocketGUIFunctionsTable *) +void GSocket_SetGUIFunctions(struct GSocketGUIFunctionsTable *table) { // do nothing, wxMac doesn't have wxBase-GUI separation yet }