1
Fork 0
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:
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

@ -316,7 +316,8 @@ 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);
int count = 0;
while (bvec < bvec_end) {
while (bvec < bvec_end)
{
count += scm_i_uint_bit_count (*bvec);
bvec ++;
}

View file

@ -107,7 +107,8 @@ 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) {
while (bvec < bvec_end)
{
count += scm_i_uint_bit_count (*bvec);
bvec ++;
}