From: H.J. Lu Date: Wed, 23 May 2018 17:15:11 +0000 (-0700) Subject: Add ATTRIBUTE_NONSTRING to ppc64_elf_write_core_note X-Git-Tag: binutils-2_31~365 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9ef6d1e31f380349c8f329d1adb47ee53ec1f6c2;p=thirdparty%2Fbinutils-gdb.git Add ATTRIBUTE_NONSTRING to ppc64_elf_write_core_note This patch silences gcc8 -Wstringop-truncation warnings. * elf64-ppc.c (ppc64_elf_write_core_note): Add ATTRIBUTE_NONSTRING to data. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 1f6a85f7e07..f086ad59c14 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2018-05-23 H.J. Lu + + * elf64-ppc.c (ppc64_elf_write_core_note): Add ATTRIBUTE_NONSTRING + to data. + 2018-05-22 Alan Modra PR 23207 diff --git a/bfd/elf64-ppc.c b/bfd/elf64-ppc.c index b1665589456..7f7a8f777ed 100644 --- a/bfd/elf64-ppc.c +++ b/bfd/elf64-ppc.c @@ -3035,7 +3035,7 @@ ppc64_elf_write_core_note (bfd *abfd, char *buf, int *bufsiz, int note_type, case NT_PRPSINFO: { - char data[136]; + char data[136] ATTRIBUTE_NONSTRING; va_list ap; va_start (ap, note_type);