diff options
author | Han-Wen Nienhuys <hanwen@lilypond.org> | 2008-08-21 23:21:57 -0300 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@lilypond.org> | 2008-08-21 23:21:57 -0300 |
commit | 4b7513463d20acca02ed233583fef958352f2c71 (patch) | |
tree | 0508b437f0c3754584aeab8f8588b65ad4c2d6ad | |
parent | 1f5844000e11a4efda65c34fcd9af4e5f152b537 (diff) | |
download | guile-4b7513463d20acca02ed233583fef958352f2c71.tar.gz |
Fix 2 indentation nitpicks.
-rw-r--r-- | libguile/gc-card.c | 9 | ||||
-rw-r--r-- | libguile/gc-segment.c | 9 |
2 files changed, 10 insertions, 8 deletions
diff --git a/libguile/gc-card.c b/libguile/gc-card.c index d1e08f336..3511533ab 100644 --- a/libguile/gc-card.c +++ b/libguile/gc-card.c @@ -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); 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 * span; } diff --git a/libguile/gc-segment.c b/libguile/gc-segment.c index 921459fca..4f7b6d59a 100644 --- a/libguile/gc-segment.c +++ b/libguile/gc-segment.c @@ -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; } |