aboutsummaryrefslogtreecommitdiff
path: root/lib/memdebug.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-03-09 15:13:34 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-03-09 15:13:34 +0000
commit3e7ebcd0513d4f55b8fc552a0791c60fe5af0c34 (patch)
tree4b439a363ae0eb17c8a04b6dbb053236fa96c3c9 /lib/memdebug.c
parentc67952fc5c3183580f4c3777d6ec2e79cd9e434b (diff)
uses socklen_t now
Diffstat (limited to 'lib/memdebug.c')
-rw-r--r--lib/memdebug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/memdebug.c b/lib/memdebug.c
index 28b86b656..213906a83 100644
--- a/lib/memdebug.c
+++ b/lib/memdebug.c
@@ -120,7 +120,7 @@ int curl_socket(int domain, int type, int protocol, int line, char *source)
return sockfd;
}
-int curl_accept(int s, struct sockaddr *addr, int *addrlen,
+int curl_accept(int s, struct sockaddr *addr, socklen_t *addrlen,
int line, char *source)
{
int sockfd=(accept)(s, addr, addrlen);