aboutsummaryrefslogtreecommitdiff
path: root/ares/ahost.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-11-10 18:41:03 +0000
committerYang Tse <yangsita@gmail.com>2009-11-10 18:41:03 +0000
commit1aa320dedbf7e9a39fd1dcf599065f6de7bf9fd2 (patch)
tree460939da7c12042f2fbb7143db1df161934acb5d /ares/ahost.c
parentd17ce4e9f12f5c76174011a0928737bf1b24b538 (diff)
Fix compiler warning: conditional expression is constant
Diffstat (limited to 'ares/ahost.c')
-rw-r--r--ares/ahost.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ares/ahost.c b/ares/ahost.c
index 4e2934057..ce5d35903 100644
--- a/ares/ahost.c
+++ b/ares/ahost.c
@@ -140,7 +140,7 @@ int main(int argc, char **argv)
}
/* Wait for all queries to complete. */
- while (1)
+ for (;;)
{
FD_ZERO(&read_fds);
FD_ZERO(&write_fds);