changeset 2707:dd796bd10e53

(struct quoting_options): Simplify quote_these_too dimension.
author Jim Meyering <jim@meyering.net>
date Thu, 06 Jul 2000 04:31:59 +0000
parents 07887e712cc0
children 66a87d9c9349
files lib/quotearg.c
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lib/quotearg.c
+++ b/lib/quotearg.c
@@ -101,8 +101,7 @@
 
   /* Quote the characters indicated by this bit vector even if the
      quoting style would not normally require them to be quoted.  */
-  int quote_these_too[((UCHAR_MAX + 1) / INT_BITS
-		       + ((UCHAR_MAX + 1) % INT_BITS != 0))];
+  int quote_these_too[(UCHAR_MAX / INT_BITS) + 1];
 };
 
 /* Names of quoting styles.  */