aboutsummaryrefslogtreecommitdiff
path: root/lib/conncache.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2012-12-10 17:04:13 +0100
committerYang Tse <yangsita@gmail.com>2012-12-10 17:04:13 +0100
commit4710d3d96977bb60db181083c8a1f39d836b3899 (patch)
tree0234b1f8fb5f1d67c2fa4a07cdc5778e3f98ef69 /lib/conncache.c
parentd758234ade7c1cbc4cdd91ea1bd6defb6b690340 (diff)
conncache: fix enumerated type mixed with another type
Diffstat (limited to 'lib/conncache.c')
-rw-r--r--lib/conncache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/conncache.c b/lib/conncache.c
index b3186037e..dc5b58cbe 100644
--- a/lib/conncache.c
+++ b/lib/conncache.c
@@ -46,7 +46,7 @@ static void free_bundle_hash_entry(void *freethis)
Curl_bundle_destroy(b);
}
-struct conncache *Curl_conncache_init(int type)
+struct conncache *Curl_conncache_init(conncachetype type)
{
struct conncache *connc;