]> gcc.gnu.org Git - gcc.git/commitdiff
gjavah.c (print_include): Cast the result of `strlen' to int when comparing against...
authorKaveh R. Ghazi <ghazi@snafu.rutgers.edu>
Thu, 13 May 1999 12:05:02 +0000 (12:05 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Thu, 13 May 1999 12:05:02 +0000 (12:05 +0000)
        * gjavah.c (print_include): Cast the result of `strlen' to int
        when comparing against a signed value.
        (add_namelet): Likewise.

From-SVN: r26924

gcc/java/ChangeLog
gcc/java/gjavah.c

index 588e1aff19e00372cca135530253be4a6371d49e..30e1b561130deb8db0b8660aee8279b09b7b55f3 100644 (file)
@@ -1,3 +1,9 @@
+1999-05-13  Kaveh R. Ghazi  <ghazi@snafu.rutgers.edu>
+
+        * gjavah.c (print_include): Cast the result of `strlen' to int
+        when comparing against a signed value.
+        (add_namelet): Likewise.
+
 1999-05-12  Kaveh R. Ghazi  <ghazi@snafu.rutgers.edu>
 
        * expr.c (expand_invoke): Mark parameter `nargs' with
index 459baa3fc82bc4d28aeadbd37a470db3904fe798..f99ad5b291021207b6c81c6d24d3803f81550bac 100644 (file)
@@ -927,7 +927,7 @@ print_include (out, utf8, len)
   for (incl = all_includes; incl; incl = incl->next)
     {
       /* We check the length because we might have a proper prefix.  */
-      if (len == strlen (incl->name)
+      if (len == (int) strlen (incl->name)
          && ! strncmp (incl->name, utf8, len))
        return;
     }
@@ -1003,7 +1003,7 @@ add_namelet (name, name_limit, parent)
   for (np = parent->subnamelets; np != NULL; np = np->next)
     {
       /* We check the length because we might have a proper prefix.  */
-      if (strlen (np->name) == p - name &&
+      if ((int) strlen (np->name) == p - name &&
          ! strncmp (name, np->name, p - name))
        {
          n = np;
This page took 0.093286 seconds and 5 git commands to generate.