(get_format_width): Add cast to avoid
authorJim Meyering <jim@meyering.net>
Sun, 15 Sep 2002 07:23:08 +0000 (07:23 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 15 Sep 2002 07:23:08 +0000 (07:23 +0000)
warning about `signed and unsigned type in conditional expression'.

src/csplit.c

index f8c179368eabdb2502d5ecbb29d43191df4f6d1a..df8546d7a4c3b60bb9a29d4ab56aecfd636e6125 100644 (file)
@@ -1249,7 +1249,7 @@ get_format_width (char **format_ptr)
      allow for enough octal digits to represent the value of LONG_MAX.  */
   count = ((*format_ptr == start)
           ? bytes_to_octal_digits[sizeof (long)]
-          : atoi (start));
+          : (unsigned) atoi (start));
   **format_ptr = ch_save;
   return count;
 }