1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-24 20:30:28 +02:00

Fix 2 indentation nitpicks.

This commit is contained in:
Han-Wen Nienhuys 2008-08-21 23:21:57 -03:00
parent 1f5844000e
commit 4b7513463d
2 changed files with 10 additions and 8 deletions

View file

@ -107,10 +107,11 @@ scm_i_heap_segment_marked_count (scm_t_heap_segment *seg)
scm_i_segment_card_count (seg) * SCM_GC_CARD_BVEC_SIZE_IN_LONGS);
int count = 0;
while (bvec < bvec_end) {
count += scm_i_uint_bit_count (*bvec);
bvec ++;
}
while (bvec < bvec_end)
{
count += scm_i_uint_bit_count (*bvec);
bvec ++;
}
return count * seg->span;
}