diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -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 | ||