mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-25 04:40:19 +02:00
Fix 2 indentation nitpicks.
This commit is contained in:
parent
1f5844000e
commit
4b7513463d
2 changed files with 10 additions and 8 deletions
|
@ -316,10 +316,11 @@ scm_i_card_marked_count (scm_t_cell *card, int span)
|
||||||
scm_t_c_bvec_long* bvec_end = (bvec + SCM_GC_CARD_BVEC_SIZE_IN_LONGS);
|
scm_t_c_bvec_long* bvec_end = (bvec + SCM_GC_CARD_BVEC_SIZE_IN_LONGS);
|
||||||
|
|
||||||
int count = 0;
|
int count = 0;
|
||||||
while (bvec < bvec_end) {
|
while (bvec < bvec_end)
|
||||||
count += scm_i_uint_bit_count (*bvec);
|
{
|
||||||
bvec ++;
|
count += scm_i_uint_bit_count (*bvec);
|
||||||
}
|
bvec ++;
|
||||||
|
}
|
||||||
return count * span;
|
return count * span;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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);
|
scm_i_segment_card_count (seg) * SCM_GC_CARD_BVEC_SIZE_IN_LONGS);
|
||||||
|
|
||||||
int count = 0;
|
int count = 0;
|
||||||
while (bvec < bvec_end) {
|
while (bvec < bvec_end)
|
||||||
count += scm_i_uint_bit_count (*bvec);
|
{
|
||||||
bvec ++;
|
count += scm_i_uint_bit_count (*bvec);
|
||||||
}
|
bvec ++;
|
||||||
|
}
|
||||||
return count * seg->span;
|
return count * seg->span;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue