diff options
author | Yang Tse <yangsita@gmail.com> | 2009-10-29 04:02:21 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-10-29 04:02:21 +0000 |
commit | 308497ffc636cb863c8d4a99f1c4cf7530b01f55 (patch) | |
tree | 679df5ffe2b85b1432b96cf4250bc19a57c11cd4 /lib/memdebug.h | |
parent | b205525d3481553ce073887e0bd7e90502c1432f (diff) | |
download | curl-308497ffc636cb863c8d4a99f1c4cf7530b01f55.tar.gz |
Fix compiler warning: control reaches end of non-void function
Diffstat (limited to 'lib/memdebug.h')
-rw-r--r-- | lib/memdebug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/memdebug.h b/lib/memdebug.h index 57e89b1d4..ed1177b59 100644 --- a/lib/memdebug.h +++ b/lib/memdebug.h @@ -57,7 +57,7 @@ CURL_EXTERN void curl_memlimit(long limit); /* file descriptor manipulators */ CURL_EXTERN int curl_socket(int domain, int type, int protocol, int line , const char *); -CURL_EXTERN int curl_mark_sclose(int sockfd, int, const char *source); +CURL_EXTERN void curl_mark_sclose(int sockfd, int, const char *source); CURL_EXTERN int curl_sclose(int sockfd, int, const char *source); CURL_EXTERN int curl_accept(int s, void *addr, void *addrlen, int line, const char *source); |