summaryrefslogtreecommitdiff
path: root/src/ivysocket.c
diff options
context:
space:
mode:
authorfcolin2005-07-25 14:28:35 +0000
committerfcolin2005-07-25 14:28:35 +0000
commitd5fc9f417c02ebe34b8f06847c375cd246f8c832 (patch)
treeb475d57c7441d0f2251a77cabd4ef38d57158b8d /src/ivysocket.c
parent97c5a6a52b134334f04a394f4ed774b287f8e774 (diff)
downloadivy-c-d5fc9f417c02ebe34b8f06847c375cd246f8c832.zip
ivy-c-d5fc9f417c02ebe34b8f06847c375cd246f8c832.tar.gz
ivy-c-d5fc9f417c02ebe34b8f06847c375cd246f8c832.tar.bz2
ivy-c-d5fc9f417c02ebe34b8f06847c375cd246f8c832.tar.xz
gestion argument Ivy
Diffstat (limited to 'src/ivysocket.c')
-rw-r--r--src/ivysocket.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ivysocket.c b/src/ivysocket.c
index 6a0cbf3..9191368 100644
--- a/src/ivysocket.c
+++ b/src/ivysocket.c
@@ -396,7 +396,7 @@ void *SocketGetData (Client client )
{
return client ? client->data : 0;
}
-void SocketSendBuf (Client client, char *buffer, int len )
+void SocketSendBuf (Client client, const char *buffer, int len )
{
unsigned long usedspace;
if (!client)
@@ -413,7 +413,7 @@ void SocketSendBuf (Client client, char *buffer, int len )
}
-void SocketSendFmt (Client client, char *fmt, ... )
+void SocketSendFmt (Client client, const char *fmt, ... )
{
va_list ap;
if (!client)