mirror of
https://github.com/serge1/ELFIO.git
synced 2024-12-28 06:15:21 +00:00
Added parentheses in ELF64_R_INFO macro for 's' parameter
This commit is contained in:
parent
350008420f
commit
e64acb2b2e
@ -827,7 +827,7 @@ struct Elf64_Rela {
|
||||
|
||||
#define ELF64_R_SYM(i) ((i)>>32)
|
||||
#define ELF64_R_TYPE(i) ((i)&0xffffffffL)
|
||||
#define ELF64_R_INFO(s,t) ((((int64_t)s)<<32)+((t)&0xffffffffL))
|
||||
#define ELF64_R_INFO(s,t) ((((int64_t)(s))<<32)+((t)&0xffffffffL))
|
||||
|
||||
// Dynamic structure
|
||||
struct Elf32_Dyn {
|
||||
|
Loading…
Reference in New Issue
Block a user