aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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.")
153 if (EQ (tail, halftail) && len != 0) 153 if (EQ (tail, halftail) && len != 0)
154 break; 154 break;
155 len++; 155 len++;
156 if (len & 1 == 0) 156 if ((len & 1) == 0)
157 halftail = XCONS (halftail)->cdr; 157 halftail = XCONS (halftail)->cdr;
158 } 158 }
159 159