From: Daniel Stenberg Date: Tue, 21 Nov 2000 09:29:21 +0000 (+0000) Subject: added comment on a variable that is unused on some platforms X-Git-Tag: curl-7_5~87 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=336b0b7d824954d466cd15adac5a381558144ce3;p=thirdparty%2Fcurl.git added comment on a variable that is unused on some platforms --- diff --git a/lib/hostip.c b/lib/hostip.c index d89d95255d..89ac57462e 100644 --- a/lib/hostip.c +++ b/lib/hostip.c @@ -111,7 +111,7 @@ struct hostent *GetHost(struct UrlData *data, { struct hostent *h = NULL; unsigned long in; - int ret; + int ret; /* this variable is unused on several platforms but used on some */ #define CURL_NAMELOOKUP_SIZE 9000