From 561ceb3fbe9078b12bb88d596e6dc8a35f23d395 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Thu, 30 Jun 2022 16:26:53 +0200 Subject: [PATCH] Fix minor typo --- ext/opcache/shared_alloc_mmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/opcache/shared_alloc_mmap.c b/ext/opcache/shared_alloc_mmap.c index 1e78624cc9d6d..8cfb4407f3faa 100644 --- a/ext/opcache/shared_alloc_mmap.c +++ b/ext/opcache/shared_alloc_mmap.c @@ -67,7 +67,7 @@ static void *find_prefered_mmap_base(size_t requested_size) /* the current segment is PHP .text segment itself */ if (last_candidate != (uintptr_t)MAP_FAILED) { if (end - last_candidate < UINT32_MAX) { - /* we have found a big anough hole before the text segment */ + /* we have found a big enough hole before the text segment */ break; } last_candidate = (uintptr_t)MAP_FAILED;