diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-04-28 12:50:32 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-04-28 12:50:32 +0000 |
commit | e4c93b56c394074228eec017e83de9150f9397de (patch) | |
tree | 0ead6cd1d96afb9381d4e7a79e1bf8e5451f4e2a /bfd/elf.c | |
parent | c7b1f0d9dc1e343565710f900ebd019a1231b56c (diff) | |
download | gdb-e4c93b56c394074228eec017e83de9150f9397de.zip gdb-e4c93b56c394074228eec017e83de9150f9397de.tar.gz gdb-e4c93b56c394074228eec017e83de9150f9397de.tar.bz2 |
bfd: constify a few arrays
Diffstat (limited to 'bfd/elf.c')
-rw-r--r-- | bfd/elf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2164,7 +2164,7 @@ static const struct bfd_elf_special_section special_sections_z[] = { NULL, 0, 0, 0, 0 } }; -static const struct bfd_elf_special_section *special_sections[] = +static const struct bfd_elf_special_section * const special_sections[] = { special_sections_b, /* 'b' */ special_sections_c, /* 'c' */ |