From e4e3bc64bc582f7ee458ac3022554ef827d241aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kochma=C5=84ski?= Date: Sun, 4 Dec 2016 14:47:59 +0100 Subject: [PATCH] cosmetic: comment wrap --- src/c/alloc_2.d | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/c/alloc_2.d b/src/c/alloc_2.d index 0401e199f..ebb259eb2 100644 --- a/src/c/alloc_2.d +++ b/src/c/alloc_2.d @@ -1220,8 +1220,7 @@ si_set_finalizer(cl_object o, cl_object finalizer) } /* If we do not build our own version of the library, we do not have - * control over the existence of this variable. - */ + * control over the existence of this variable. */ #if GBC_BOEHM == 0 extern int GC_print_stats; #else @@ -1279,10 +1278,9 @@ gather_statistics() cl_core.bytes_consed->big.big_num, GC_get_bytes_since_gc()); #else - /* This is not accurate and may wrap around. We try - to detect this assuming that an overflow in an - unsigned integer will produce an smaller - integer.*/ + /* This is not accurate and may wrap around. We try to detect this + assuming that an overflow in an unsigned integer will produce + a smaller integer.*/ static cl_index bytes = 0; cl_index new_bytes = GC_get_total_bytes(); if (bytes > new_bytes) {