forked from Imagelibrary/binutils-gdb
readelf: avoid shadowing a libiberty symbol
With my (oldish) gcc I'm seeing .../binutils/readelf.c: In function dump_ctf_indent_lines: .../binutils/readelf.c:13851: error: declaration of spaces shadows a global declaration .../binutils/../include/libiberty.h:253: error: shadowed declaration is here
This commit is contained in:
@@ -13848,10 +13848,10 @@ shdr_to_ctf_sect (ctf_sect_t *buf, Elf_Internal_Shdr *shdr, Filedata *filedata)
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user