Fix compiler warning: control reaches end of non-void function
authorYang Tse <yangsita@gmail.com>
Thu, 29 Oct 2009 04:02:21 +0000 (04:02 +0000)
committerYang Tse <yangsita@gmail.com>
Thu, 29 Oct 2009 04:02:21 +0000 (04:02 +0000)
lib/memdebug.c
lib/memdebug.h

index ea3eb85..99bce6a 100644 (file)
@@ -264,7 +264,7 @@ int curl_accept(int s, void *saddr, void *saddrlen,
 }
 
 /* separate function to allow libcurl to mark a "faked" close */
-int curl_mark_sclose(int sockfd, int line, const char *source)
+void curl_mark_sclose(int sockfd, int line, const char *source)
 {
   if(logfile)
     fprintf(logfile, "FD %s:%d sclose(%d)\n",
index 57e89b1..ed1177b 100644 (file)
@@ -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);