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:
parent
1f5844000e
commit
4b7513463d
2 changed files with 10 additions and 8 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue