summaryrefslogtreecommitdiffstats
path: root/tapsets.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tapsets.cxx')
-rw-r--r--tapsets.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/tapsets.cxx b/tapsets.cxx
index f91d15d3..8d0e0ab2 100644
--- a/tapsets.cxx
+++ b/tapsets.cxx
@@ -5607,7 +5607,7 @@ dwarf_type_name(Dwarf_Die& type_die, string& c_type)
}
if (done)
{
- c_type.append(dwarf_diename_integrate(&type_die));
+ c_type.append(dwarf_diename(&type_die));
return true;
}
@@ -5699,7 +5699,7 @@ tracepoint_derived_probe::build_args(dwflpp& dw, Dwarf_Die& func_die)
{
// build a tracepoint_arg for this parameter
tracepoint_arg tparg;
- tparg.name = dwarf_diename_integrate(&arg);
+ tparg.name = dwarf_diename(&arg);
// read the type of this parameter
Dwarf_Attribute type_attr;