aboutsummaryrefslogtreecommitdiff
path: root/src/common/linux/dwarf_line_to_module.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/linux/dwarf_line_to_module.cc')
-rw-r--r--src/common/linux/dwarf_line_to_module.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/linux/dwarf_line_to_module.cc b/src/common/linux/dwarf_line_to_module.cc
index 745d324c..afef1c0e 100644
--- a/src/common/linux/dwarf_line_to_module.cc
+++ b/src/common/linux/dwarf_line_to_module.cc
@@ -108,11 +108,11 @@ void DwarfLineToModule::AddLine(uint64 address, uint64 length,
return;
}
Module::Line line;
- line.address_ = address;
+ line.address = address;
// We set the size when we get the next line or the EndSequence call.
- line.size_ = length;
- line.file_ = file;
- line.number_ = line_num;
+ line.size = length;
+ line.file = file;
+ line.number = line_num;
lines_->push_back(line);
}