From d21d456b3abecb61ec8e5dfc6f06f48ba1eb4cc5 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Fri, 24 Mar 2023 07:51:37 +0300 Subject: Fix a typo in comment of GC_generic_malloc_inner * malloc.c (GC_generic_malloc_inner): Fix a typo ("to directly allocate") in comment. --- malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'malloc.c') diff --git a/malloc.c b/malloc.c index bb6e2354..3188544f 100644 --- a/malloc.c +++ b/malloc.c @@ -151,7 +151,7 @@ STATIC void GC_extend_size_map(size_t i) } /* Allocate lb bytes for an object of kind k. */ -/* Should not be used to directly to allocate objects */ +/* Should not be used to directly allocate objects */ /* that require special handling on allocation. */ GC_INNER void * GC_generic_malloc_inner(size_t lb, int k) { -- cgit v1.2.1