mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fix ubsan warning on macos
Closes GH-6652.
This commit is contained in:
parent
a53e360d98
commit
559fc46b9f
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ static int create_segments(size_t requested_size, zend_shared_segment ***shared_
|
|||
#endif
|
||||
#ifdef VM_MAKE_TAG
|
||||
/* allows tracking segments via tools such as vmmap */
|
||||
fd = VM_MAKE_TAG(251);
|
||||
fd = VM_MAKE_TAG(251U);
|
||||
#endif
|
||||
#ifdef MAP_HUGETLB
|
||||
size_t huge_page_size = 2 * 1024 * 1024;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue