Use correct enum type for do_elf_stt_common.

binutils/ChangeLog:

	* objcopy.c (do_elf_stt_common): Use correct type.
This commit is contained in:
John Baldwin 2016-06-11 06:09:06 -07:00
parent c428ce9d90
commit eecc1a7faa
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2016-06-14 John Baldwin <jhb@FreeBSD.org>
* objcopy.c (do_elf_stt_common): Use correct type.
2016-06-14 Alan Modra <amodra@gmail.com>
* ar.c: Expand uses of bfd_my_archive.

View File

@ -221,7 +221,7 @@ static enum
} do_debug_sections = nothing;
/* Whether to generate ELF common symbols with the STT_COMMON type. */
static enum bfd_link_discard do_elf_stt_common = unchanged;
static enum bfd_link_elf_stt_common do_elf_stt_common = unchanged;
/* Whether to change the leading character in symbol names. */
static bfd_boolean change_leading_char = FALSE;