We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a22e19 commit b45b9d4Copy full SHA for b45b9d4
objdiff-gui/src/views/data_diff.rs
@@ -154,8 +154,8 @@ pub(crate) fn data_row_ui(
154
.find(|reloc_diff| reloc_diff.range.contains(&cur_addr_actual))
155
{
156
if *byte == 0 {
157
- // Display 00 data bytes with a relocation as xx instead.
158
- byte_text = "xx ".to_string();
+ // Display 00 data bytes with a relocation as ?? instead.
+ byte_text = "?? ".to_string();
159
}
160
if reloc_diff.kind != DataDiffKind::None {
161
byte_color = get_color_for_diff_kind(reloc_diff.kind, appearance);
0 commit comments