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 /libguile/gc-segment.c | |
parent | 1f5844000e11a4efda65c34fcd9af4e5f152b537 (diff) | |
download | guile-4b7513463d20acca02ed233583fef958352f2c71.tar.gz |
Fix 2 indentation nitpicks.
Diffstat (limited to 'libguile/gc-segment.c')
-rw-r--r-- | libguile/gc-segment.c | 9 |
1 files changed, 5 insertions, 4 deletions
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; } |