diff options
author | Yang Tse <yangsita@gmail.com> | 2007-03-25 01:59:52 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-03-25 01:59:52 +0000 |
commit | d6eca8922960f2e3bf2cd07eef3eebbdb7ee265a (patch) | |
tree | 35b8830ca0274fa10389eede6674f8881594965c /lib/hostip4.c | |
parent | 2bd1d7e996e8c781f14af8d3e7d0ffbd4033d5f1 (diff) | |
download | curl-d6eca8922960f2e3bf2cd07eef3eebbdb7ee265a.tar.gz |
fix compiler warning
Diffstat (limited to 'lib/hostip4.c')
-rw-r--r-- | lib/hostip4.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/hostip4.c b/lib/hostip4.c index d2cd81911..d092d2718 100644 --- a/lib/hostip4.c +++ b/lib/hostip4.c @@ -129,6 +129,10 @@ Curl_addrinfo *Curl_getaddrinfo(struct connectdata *conn, in_addr_t in; struct hostent *buf = NULL; +#ifdef CURL_DISABLE_VERBOSE_STRINGS + (void)conn; +#endif + (void)port; /* unused in IPv4 code */ *waitp = 0; /* don't wait, we act synchronously */ |