From af296b19efd5a1f069ea4630b0df6912c2d66ad0 Mon Sep 17 00:00:00 2001 From: Vibhav Pant Date: Wed, 30 Nov 2022 22:59:52 +0530 Subject: [PATCH] ; src/alloc.c: Fix styling issues. --- src/alloc.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/alloc.c b/src/alloc.c index 687982f9d5d..ee8b7ebf96a 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -102,8 +102,7 @@ along with GNU Emacs. If not, see . */ Accordingly, objects reused from the free list are unpoisoned. This feature can be disabled wtih the run-time flag - `allow_user_poisoning' set to zero. -*/ + `allow_user_poisoning' set to zero. */ #if ADDRESS_SANITIZER && defined HAVE_SANITIZER_ASAN_INTERFACE_H \ && !defined GC_ASAN_POISON_OBJECTS # define GC_ASAN_POISON_OBJECTS 1 @@ -3384,8 +3383,7 @@ allocate_vector_from_block (ptrdiff_t nbytes) restbytes = index * roundup_size + VBLOCK_BYTES_MIN - nbytes; eassert (restbytes % roundup_size == 0); #if GC_ASAN_POISON_OBJECTS - /* Ensure that accessing excess bytes does not trigger ASan. - */ + /* Ensure that accessing excess bytes does not trigger ASan. */ __asan_unpoison_memory_region (ADVANCE (vector, nbytes), restbytes); #endif -- 2.39.5