1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

if2ip.c: fix compiler warning 'unused parameter'

This commit is contained in:
Yang Tse 2011-12-13 16:08:42 +01:00
parent b9b772fefe
commit 66c5076252

View File

@ -178,6 +178,8 @@ char *Curl_if2ip(int af, const char *interface, char *buf, int buf_size)
bool Curl_if_is_interface_name(const char *interface) bool Curl_if_is_interface_name(const char *interface)
{ {
(void) interface;
return FALSE; return FALSE;
} }