1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-14 15:40:19 +02:00

Style nitpicks: space before () in function call.

This commit is contained in:
Han-Wen Nienhuys 2008-08-21 23:16:20 -03:00
parent 103dc4d4d2
commit 1f5844000e
7 changed files with 42 additions and 42 deletions

View file

@ -108,7 +108,7 @@ scm_i_heap_segment_marked_count (scm_t_heap_segment *seg)
int count = 0;
while (bvec < bvec_end) {
count += scm_i_uint_bit_count(*bvec);
count += scm_i_uint_bit_count (*bvec);
bvec ++;
}
return count * seg->span;