Skip to content

Commit

Permalink
Fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
syrusakbary committed May 15, 2021
1 parent 9dac469 commit 9ea5a13
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/object/src/module.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,12 @@ pub fn emit_compilation(
section: SymbolSection::Section(section_id),
flags: SymbolFlags::None,
});
obj.add_symbol_data(symbol_id, section_id, custom_section.bytes.as_slice(), align);
obj.add_symbol_data(
symbol_id,
section_id,
custom_section.bytes.as_slice(),
align,
);
(section_id, symbol_id)
}
})
Expand Down

0 comments on commit 9ea5a13

Please sign in to comment.