summaryrefslogtreecommitdiff
path: root/src/fns.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-10-30 19:34:27 +0000
committerRichard M. Stallman <rms@gnu.org>1995-10-30 19:34:27 +0000
commit641392d945881530d79dca5c7cf276f56e5836e0 (patch)
treeca051bf7438630adc7a478b613dfee6146f5d22a /src/fns.c
parent4699b0216fa207175436ad19b36081a126f03f2e (diff)
downloademacs-641392d945881530d79dca5c7cf276f56e5836e0.tar.gz
(Fsafe_length): Add missing parentheses around & within comparison.
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 1bcb963e20f..2e282011e75 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -153,7 +153,7 @@ which is at least the number of distinct elements.")
if (EQ (tail, halftail) && len != 0)
break;
len++;
- if (len & 1 == 0)
+ if ((len & 1) == 0)
halftail = XCONS (halftail)->cdr;
}