[ci skip] Fix typo (anough → enough)

Closes GH-8901.
This commit is contained in:
Javier Eguiluz 2022-06-30 16:26:53 +02:00 committed by Christoph M. Becker
parent 9a7d37ac66
commit 14ced88c17
No known key found for this signature in database
GPG Key ID: D66C9593118BCCB6

View File

@ -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;