mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 15:21:12 +00:00
Fix type mismatch
This commit is contained in:
parent
a188720a16
commit
79bd82d51e
1 changed files with 1 additions and 1 deletions
|
@ -1090,7 +1090,7 @@ pub fn surgery(matches: &ArgMatches) -> io::Result<i32> {
|
||||||
let new_text_section_offset = offset;
|
let new_text_section_offset = offset;
|
||||||
let mut app_func_size_map: MutMap<String, u64> = MutMap::default();
|
let mut app_func_size_map: MutMap<String, u64> = MutMap::default();
|
||||||
let mut app_func_segment_offset_map: MutMap<String, usize> = MutMap::default();
|
let mut app_func_segment_offset_map: MutMap<String, usize> = MutMap::default();
|
||||||
let mut got_sections: Vec<(u64, u64)> = vec![];
|
let mut got_sections: Vec<(usize, usize)> = vec![];
|
||||||
for sec in text_sections {
|
for sec in text_sections {
|
||||||
let data = match sec.uncompressed_data() {
|
let data = match sec.uncompressed_data() {
|
||||||
Ok(data) => data,
|
Ok(data) => data,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue