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 6ba080c0b4c..44f935c243d 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -5733,7 +5733,7 @@ gc_sweep (void) | |||
| 5733 | int ilim = (lim + BITS_PER_INT - 1) / BITS_PER_INT; | 5733 | int ilim = (lim + BITS_PER_INT - 1) / BITS_PER_INT; |
| 5734 | 5734 | ||
| 5735 | /* Scan the mark bits an int at a time. */ | 5735 | /* Scan the mark bits an int at a time. */ |
| 5736 | for (i = 0; i <= ilim; i++) | 5736 | for (i = 0; i < ilim; i++) |
| 5737 | { | 5737 | { |
| 5738 | if (cblk->gcmarkbits[i] == -1) | 5738 | if (cblk->gcmarkbits[i] == -1) |
| 5739 | { | 5739 | { |