From 74af4f4686fbd4f39e0b733c9861b679dc1177cf Mon Sep 17 00:00:00 2001 From: Dacheng Gao <13791720+successgdc@users.noreply.github.com> Date: Wed, 20 Mar 2019 21:44:21 +0800 Subject: [PATCH] fix the might typo --- src/heap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/heap.c b/src/heap.c index c7d8560..6a8908d 100644 --- a/src/heap.c +++ b/src/heap.c @@ -134,7 +134,7 @@ void *malloc_shared_memory (size_t size) } /* - * Allocate a block of memory from the "shared" region an initialize it to + * Allocate a block of memory from the "shared" region and initialize it to * zero. */ void *calloc_shared_memory (size_t nmemb, size_t size)