mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-13 06:40:09 +00:00
Declare bit flags UL so that they will not default to int size when
being inverted.
This commit is contained in:
parent
85fec8564d
commit
1d14e5d2db
@ -1317,11 +1317,11 @@ static void free_atfork();
|
||||
|
||||
/* size field is or'ed with PREV_INUSE when previous adjacent chunk in use */
|
||||
|
||||
#define PREV_INUSE 0x1
|
||||
#define PREV_INUSE 0x1UL
|
||||
|
||||
/* size field is or'ed with IS_MMAPPED if the chunk was obtained with mmap() */
|
||||
|
||||
#define IS_MMAPPED 0x2
|
||||
#define IS_MMAPPED 0x2UL
|
||||
|
||||
/* Bits to mask off when extracting size */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user