diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2003-08-22 12:25:47 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2003-08-22 12:25:47 +0000 | 
| commit | 7e7d89471a3815ee6bf479c8653cefbec9cf52d4 (patch) | |
| tree | a1f7c4f2be7ff164306b8d395eeea9e68b563a61 /lib | |
| parent | e67d15b50e30520c60652f8d13386a4635c063c9 (diff) | |
use proper type to prevent compiler warning
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/hostip.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hostip.c b/lib/hostip.c index b546f0de2..5c3a71841 100644 --- a/lib/hostip.c +++ b/lib/hostip.c @@ -212,7 +212,7 @@ cache_resolv_response(struct SessionHandle *data,                        int port)  {    char *entry_id; -  int entry_len; +  ssize_t entry_len;    struct Curl_dns_entry *dns;    time_t now;  | 
