Skip to content

Commit 2d5f2b8

Browse files
committed
More fixes...
1 parent 09595bc commit 2d5f2b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

objdiff-gui/src/views/diff.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ fn get_asm_text(obj: &Object, symbol_diff: &SymbolDiff, symbol_idx: usize, diff_
9191
Ordering::Less => format!("-{:#x}", -addend),
9292
_ => String::new(),
9393
},
94-
DiffText::Spacing(n) => " ".repeat(n),
94+
DiffText::Spacing(n) => " ".repeat(n.into()),
9595
DiffText::Eol => "\n".to_string(),
9696
};
9797
line.push_str(&text);

0 commit comments

Comments
 (0)