* resolv/res_query.c (__libc_res_nquery): Add a few casts.
authorUlrich Drepper <drepper@redhat.com>
Fri, 24 Oct 2008 07:05:38 +0000 (07:05 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 24 Oct 2008 07:05:38 +0000 (07:05 +0000)
ChangeLog
resolv/res_query.c

index fe6014c..ad37c3b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-10-24  Ulrich Drepper  <drepper@redhat.com>
+
+       * resolv/res_query.c (__libc_res_nquery): Add a few casts.
+
 2008-10-23  Ulrich Drepper  <drepper@redhat.com>
 
        * po/id.po: New file.
index 7102ba9..b6c70f0 100644 (file)
@@ -244,15 +244,15 @@ __libc_res_nquery(res_state statp,
           tests of HP2.  */
        HEADER *hp2 = answerp2 ? (HEADER *) *answerp2 : hp;
 
-       if (n < sizeof (HEADER) && nanswerp2 != NULL
-           && *nanswerp2 > sizeof (HEADER))
+       if (n < (int) sizeof (HEADER) && nanswerp2 != NULL
+           && *nanswerp2 > (int) sizeof (HEADER))
          {
            /* Special case of partial answer.  */
            assert (hp != hp2);
            hp = hp2;
          }
-       else if (nanswerp2 != NULL
-                && *nanswerp2 < sizeof (HEADER) && n > sizeof (HEADER))
+       else if (nanswerp2 != NULL && *nanswerp2 < (int) sizeof (HEADER)
+                && n > (int) sizeof (HEADER))
          {
            /* Special case of partial answer.  */
            assert (hp != hp2);