changeset 32216:e3942e3b3920

cosmetics: Drop a bunch of unnecessary parentheses from big-endian check.
author diego
date Sat, 18 Sep 2010 09:52:08 +0000
parents 37bf4af10f1b
children e9e3137f8b43
files configure
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Sat Sep 18 09:50:05 2010 +0000
+++ b/configure	Sat Sep 18 09:52:08 2010 +0000
@@ -2459,9 +2459,8 @@
 if test "$_big_endian" = auto ; then
   cat > $TMPC <<EOF
 short ascii_name[] = {
-  (('M' << 8) | 'P'), (('l' << 8) | 'a'), (('y' << 8) | 'e'),
-  (('r' << 8) | 'B'), (('i' << 8) | 'g'), (('E' << 8) | 'n'),
-  (('d' << 8) | 'i'), (('a' << 8) | 'n'), 0 };
+  'M' << 8 | 'P', 'l' << 8 | 'a', 'y' << 8 | 'e', 'r' << 8 | 'B',
+  'i' << 8 | 'g', 'E' << 8 | 'n', 'd' << 8 | 'i', 'a' << 8 | 'n', 0 };
 int main(void) { return (long)ascii_name; }
 EOF
   if cc_check ; then