diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index f325b6ed449..eb356fd0e83 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -5753,7 +5753,7 @@ gc_sweep (void) | |||
| 5753 | int ilim = (lim + BITS_PER_INT - 1) / BITS_PER_INT; | 5753 | int ilim = (lim + BITS_PER_INT - 1) / BITS_PER_INT; |
| 5754 | 5754 | ||
| 5755 | /* Scan the mark bits an int at a time. */ | 5755 | /* Scan the mark bits an int at a time. */ |
| 5756 | for (i = 0; i <= ilim; i++) | 5756 | for (i = 0; i < ilim; i++) |
| 5757 | { | 5757 | { |
| 5758 | if (cblk->gcmarkbits[i] == -1) | 5758 | if (cblk->gcmarkbits[i] == -1) |
| 5759 | { | 5759 | { |