From: John Baldwin Date: Sat, 11 Jun 2016 13:09:06 +0000 (-0700) Subject: Use correct enum type for do_elf_stt_common. X-Git-Tag: binutils-2_27~236 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eecc1a7faa15327d4a1fc574d9b54e86bb07cbec;p=external%2Fbinutils.git Use correct enum type for do_elf_stt_common. binutils/ChangeLog: * objcopy.c (do_elf_stt_common): Use correct type. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index ff8161a..e8e80b3 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2016-06-14 John Baldwin + + * objcopy.c (do_elf_stt_common): Use correct type. + 2016-06-14 Alan Modra * ar.c: Expand uses of bfd_my_archive. diff --git a/binutils/objcopy.c b/binutils/objcopy.c index 06fcea3..76170cb 100644 --- a/binutils/objcopy.c +++ b/binutils/objcopy.c @@ -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;