diff options
author | Jim Meyering <jim@meyering.net> | 2000-07-06 04:31:59 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-07-06 04:31:59 +0000 |
commit | 98b348bce8e478f5424936c2f5c18f3c542122f1 (patch) | |
tree | fcb7bf55073f1ebcbfe18bfa6dd7ecdf99f34846 | |
parent | 78c7d32c2ea87caca70821379054672eb912f2c0 (diff) | |
download | coreutils-98b348bce8e478f5424936c2f5c18f3c542122f1.tar.xz |
(struct quoting_options): Simplify quote_these_too dimension.
-rw-r--r-- | lib/quotearg.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/quotearg.c b/lib/quotearg.c index 553a0f0c3..a1ccb3b8f 100644 --- a/lib/quotearg.c +++ b/lib/quotearg.c @@ -101,8 +101,7 @@ struct quoting_options /* 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. */ |