diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | elf/elf.h | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2015-04-28 Mark Wielaard <mjw@redhat.com> + + * elf/elf.h (SHF_EXCLUDE): Use unsigned 1 for shift. + 2015-04-27 David S. Miller <davem@davemloft.net> * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data: Remove @@ -371,7 +371,7 @@ typedef struct #define SHF_MASKPROC 0xf0000000 /* Processor-specific */ #define SHF_ORDERED (1 << 30) /* Special ordering requirement (Solaris). */ -#define SHF_EXCLUDE (1 << 31) /* Section is excluded unless +#define SHF_EXCLUDE (1U << 31) /* Section is excluded unless referenced or allocated (Solaris).*/ /* Section group handling. */ |