avoid warnings on systems with this member set const

This commit is contained in:
Daniel Stenberg 2004-10-06 07:52:20 +00:00
Родитель 39af394a1c
Коммит 49b2896a3b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -161,7 +161,7 @@ Curl_addrinfo *Curl_ip2addr(in_addr_t num, char *hostname, int port)
h->h_aliases = NULL;
/* Now store the dotted version of the address */
snprintf(h->h_name, 16, "%s", hostname);
snprintf((char *)h->h_name, 16, "%s", hostname);
ai = Curl_he2ai(h, port);