objdump: avoid shadowing a libiberty symbol
[deliverable/binutils-gdb.git] / binutils / objdump.c
index d9c8cea36491d8f6f400f2ecde028055d9d79d42..7a4e7e4b494a0607418bd442aa2bfeb675e73dbb 100644 (file)
@@ -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;
 }
This page took 0.029167 seconds and 4 git commands to generate.