From: Vibhav Pant Date: Wed, 30 Nov 2022 17:29:52 +0000 (+0530) Subject: ; src/alloc.c: Fix styling issues. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=af296b19efd5a1f069ea4630b0df6912c2d66ad0;p=emacs.git ; src/alloc.c: Fix styling issues. --- 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