1
0
mirror of https://github.com/moparisthebest/curl synced 2025-03-01 01:41:50 -05:00

fix compiler warning: unreferenced formal parameter

This commit is contained in:
Yang Tse 2008-05-26 13:52:25 +00:00
parent c57e748107
commit d220ac8582

View File

@ -142,6 +142,8 @@ static void callback(void *arg, int status, int timeouts, struct hostent *host)
{
char **p;
(void)timeouts;
if (status != ARES_SUCCESS)
{
fprintf(stderr, "%s: %s\n", (char *) arg, ares_strerror(status));