diff options
author | Yang Tse <yangsita@gmail.com> | 2011-05-21 14:10:17 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-05-21 14:10:17 +0200 |
commit | fce7276f5446e7fc1003b98a9a752a3a42a0a247 (patch) | |
tree | fbe4ca6bcf1657087db101605247205e226dc392 /lib/asyn.h | |
parent | 004d84fcc17e3cb46a5cfed694ddcd122bd2f4ba (diff) | |
download | curl-fce7276f5446e7fc1003b98a9a752a3a42a0a247.tar.gz |
compiler warning: fix
Fix compiler warning: enumerated type mixed with another type
Diffstat (limited to 'lib/asyn.h')
-rw-r--r-- | lib/asyn.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asyn.h b/lib/asyn.h index 4e16de03d..34f9c14c5 100644 --- a/lib/asyn.h +++ b/lib/asyn.h @@ -60,7 +60,7 @@ void Curl_resolver_global_cleanup(void); * Returning anything else than CURLE_OK fails curl_easy_init() with the * correspondent code. */ -int Curl_resolver_init(void **resolver); +CURLcode Curl_resolver_init(void **resolver); /* * Curl_resolver_cleanup() |