(quotearg_n_options): Declare n1 to be of type
authorJim Meyering <jim@meyering.net>
Sat, 16 Jan 1999 15:55:20 +0000 (15:55 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 16 Jan 1999 15:55:20 +0000 (15:55 +0000)
unsigned int, not just int.

lib/quotearg.c

index e1a6f93..90d0556 100644 (file)
@@ -313,7 +313,7 @@ quotearg_n_options (unsigned int n, char const *arg,
 
   if (nslots <= n)
     {
-      int n1 = n + 1;
+      unsigned int n1 = n + 1;
       size_t s = n1 * sizeof (struct slotvec);
       if (! (0 < n1 && n1 == s / sizeof (struct slotvec)))
        abort ();