diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-10-01 15:10:39 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-10-01 15:10:39 -0400 |
commit | c44d37d6a21ee9a62cd6b26c24999e8006e2c62c (patch) | |
tree | 7e62689516b8fd4249522248aec57ad0d7cce36c /ldso/ldso/i386/dl-debug.h | |
parent | 82f8d0bce10403deab704871e638edc24e7933ee (diff) |
ldso: constify reloc array itself
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'ldso/ldso/i386/dl-debug.h')
-rw-r--r-- | ldso/ldso/i386/dl-debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/ldso/i386/dl-debug.h b/ldso/ldso/i386/dl-debug.h index 72a01f8df..82baf1fcc 100644 --- a/ldso/ldso/i386/dl-debug.h +++ b/ldso/ldso/i386/dl-debug.h @@ -29,7 +29,7 @@ * SUCH DAMAGE. */ -static const char *_dl_reltypes_tab[] = { +static const char * const _dl_reltypes_tab[] = { [0] "R_386_NONE", "R_386_32", "R_386_PC32", "R_386_GOT32", [4] "R_386_PLT32", "R_386_COPY", "R_386_GLOB_DAT", "R_386_JMP_SLOT", [8] "R_386_RELATIVE", "R_386_GOTOFF", "R_386_GOTPC", |