aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-07-29 07:29:56 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-07-29 07:29:56 +0000
commit1d23affbc5bf0e38b7e11469f6f0378d0410d730 (patch)
treedaf6ec095463fb85334eaa22774e690ea12a24cb /include
parent26ffaa263b627b7ec9ac81bc7241d6ed67501a37 (diff)
oops, curl_easy_reset is a void
Diffstat (limited to 'include')
-rw-r--r--include/curl/easy.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/curl/easy.h b/include/curl/easy.h
index 0ddf08dcb..336e542f8 100644
--- a/include/curl/easy.h
+++ b/include/curl/easy.h
@@ -72,7 +72,7 @@ CURL* curl_easy_duphandle(CURL *curl);
* It does keep: live connections, the Session ID cache, the DNS cache and the
* cookies.
*/
-CURL* curl_easy_reset(CURL *curl);
+void curl_easy_reset(CURL *curl);
#ifdef __cplusplus
}