diff options
author | Yang Tse <yangsita@gmail.com> | 2012-12-10 17:04:13 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-12-10 17:04:13 +0100 |
commit | 4710d3d96977bb60db181083c8a1f39d836b3899 (patch) | |
tree | 0234b1f8fb5f1d67c2fa4a07cdc5778e3f98ef69 /lib/conncache.c | |
parent | d758234ade7c1cbc4cdd91ea1bd6defb6b690340 (diff) | |
download | curl-4710d3d96977bb60db181083c8a1f39d836b3899.tar.gz |
conncache: fix enumerated type mixed with another type
Diffstat (limited to 'lib/conncache.c')
-rw-r--r-- | lib/conncache.c | 2 |
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; |