(Fsafe_length): Add missing parentheses around & within comparison.
authorRichard M. Stallman <rms@gnu.org>
Mon, 30 Oct 1995 19:34:27 +0000 (19:34 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 30 Oct 1995 19:34:27 +0000 (19:34 +0000)
src/fns.c

index 1bcb963..2e28201 100644 (file)
--- 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;
     }