mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
objdump: avoid shadowing a libiberty symbol
With my (oldish) gcc I'm seeing .../binutils/objdump.c: In function dump_ctf_indent_lines: .../binutils/objdump.c:3210: error: declaration of spaces shadows a global declaration .../binutils/../include/libiberty.h:253: error: shadowed declaration is here
This commit is contained in:
parent
2c70385689
commit
63160fc996
@ -1,3 +1,8 @@
|
||||
2019-06-25 Jan Beulich <jbeulich@suse.com>
|
||||
|
||||
* objdump.c (dump_ctf_indent_lines): Rename local variable
|
||||
"spaces" to "blanks".
|
||||
|
||||
2019-06-14 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* Makefile.in: Regenerate.
|
||||
|
@ -3207,10 +3207,10 @@ static char *
|
||||
dump_ctf_indent_lines (ctf_sect_names_t sect ATTRIBUTE_UNUSED,
|
||||
char *s, void *arg)
|
||||
{
|
||||
char *spaces = arg;
|
||||
const char *blanks = arg;
|
||||
char *new_s;
|
||||
|
||||
if (asprintf (&new_s, "%s%s", spaces, s) < 0)
|
||||
if (asprintf (&new_s, "%s%s", blanks, s) < 0)
|
||||
return s;
|
||||
return new_s;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user