Skip to content

Commit 15ae974

Browse files
committed
format
1 parent be424b1 commit 15ae974

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ FunctionSP SymbolFileBreakpad::GetOrCreateFunction(CompileUnit &comp_unit) {
251251
addr_t address = record->Address + base;
252252
SectionSP section_sp = list->FindSectionContainingFileAddress(address);
253253
if (section_sp) {
254-
Address func_addr(section_sp, address-section_sp->GetFileAddress());
254+
Address func_addr(section_sp, address - section_sp->GetFileAddress());
255255
// Use the CU's id because every CU has only one function inside.
256256
func_sp = std::make_shared<Function>(
257257
&comp_unit, id, 0, func_name, nullptr, func_addr,

0 commit comments

Comments
 (0)