Fix compiler warning

This commit is contained in:
Yang Tse 2005-12-08 19:47:33 +00:00
parent 1e5f6cc1dc
commit c94f3e8188
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ int curl_dogetnameinfo(const struct sockaddr *sa, socklen_t salen,
char *serv, size_t servlen, int flags,
int line, const char *source)
{
int res=(getnameinfo)(sa, salen, host, hostlen, serv, servlen, flags);
int res = (int)(getnameinfo)(sa, salen, host, hostlen, serv, servlen, flags);
if(0 == res) {
/* success */
if(logfile)