diff options
author | Yang Tse <yangsita@gmail.com> | 2005-12-09 21:09:21 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2005-12-09 21:09:21 +0000 |
commit | 4f69318e1289ae6722ba36d7e10b05483170cb6e (patch) | |
tree | 616e0c7888a1e92474c94f1ade26d8f9adbce68e | |
parent | 1cc98ab50faeba573d7141c26b71469ba72c6625 (diff) |
Fix compiler warning
-rw-r--r-- | ares/ares_process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ares/ares_process.c b/ares/ares_process.c index 7662e028b..93e7196e0 100644 --- a/ares/ares_process.c +++ b/ares/ares_process.c @@ -103,7 +103,7 @@ static void write_tcp_data(ares_channel channel, fd_set *write_fds, time_t now) struct iovec *vec; int i; ssize_t scount; - int wcount; + ssize_t wcount; size_t n; for (i = 0; i < channel->nservers; i++) |