Dan Fandrich fix: eliminates some pedantic CodeWarrior compiler warnings and

errors.
This commit is contained in:
Daniel Stenberg 2004-11-18 14:04:40 +00:00
parent d46a573bbe
commit dcea109bb5
4 changed files with 14 additions and 9 deletions

View file

@ -174,7 +174,8 @@ void Curl_global_host_cache_dtor(void)
int Curl_num_addresses(const Curl_addrinfo *addr)
{
int i;
for (i = 0; addr; addr = addr->ai_next, i++);
for (i = 0; addr; addr = addr->ai_next, i++)
; /* empty loop */
return i;
}