mirror of
https://git.musl-libc.org/git/musl
synced 2025-03-21 18:12:55 +03:00
fix integer overflow in elf.h macro SHF_EXCLUDE
This commit is contained in:
parent
58fa856960
commit
e98a54643e
@ -319,7 +319,7 @@ typedef struct {
|
||||
#define SHF_MASKOS 0x0ff00000
|
||||
#define SHF_MASKPROC 0xf0000000
|
||||
#define SHF_ORDERED (1 << 30)
|
||||
#define SHF_EXCLUDE (1 << 31)
|
||||
#define SHF_EXCLUDE (1U << 31)
|
||||
|
||||
#define GRP_COMDAT 0x1
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user