mirror of git://git.musl-libc.org/musl
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…
Reference in New Issue