]> git.eshelyaron.com Git - emacs.git/commitdiff
; src/alloc.c: Fix styling issues.
authorVibhav Pant <vibhavp@gmail.com>
Wed, 30 Nov 2022 17:29:52 +0000 (22:59 +0530)
committerVibhav Pant <vibhavp@gmail.com>
Wed, 30 Nov 2022 17:29:52 +0000 (22:59 +0530)
src/alloc.c

index 687982f9d5d6b4fef17affe65c9e441c36acf45b..ee8b7ebf96a38c5527b8773f5e661979fe2bcc13 100644 (file)
@@ -102,8 +102,7 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
    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