From: Jim Meyering Date: Sat, 16 Jan 1999 15:55:20 +0000 (+0000) Subject: (quotearg_n_options): Declare n1 to be of type X-Git-Tag: TEXTUTILS-1_22h~182 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b76f341922eca4cbb9fd20597041c90d552846b5;p=thirdparty%2Fcoreutils.git (quotearg_n_options): Declare n1 to be of type unsigned int, not just int. --- diff --git a/lib/quotearg.c b/lib/quotearg.c index e1a6f9356f..90d0556d4b 100644 --- a/lib/quotearg.c +++ b/lib/quotearg.c @@ -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 ();