Skip to content

Commit

Permalink
Correct reference endianness
Browse files Browse the repository at this point in the history
So the cleansing begins...
  • Loading branch information
cohaereo committed Jun 21, 2024
1 parent 0bb44ec commit 0538e86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/tag.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1257,7 +1257,7 @@ pub fn format_tag_entry(tag: TagHash, entry: Option<&UEntryHeader>) -> String {
.unwrap_or_default();

format!(
"{}{named_tag}{tag} {}{ref_label} ({}+{}, ref {})",
"{}{named_tag}{tag} {}{ref_label} ({}+{}, ref {:08X})",
if get_hash64(tag).is_some() {
"★ "
} else {
Expand All @@ -1266,7 +1266,7 @@ pub fn format_tag_entry(tag: TagHash, entry: Option<&UEntryHeader>) -> String {
TagType::from_type_subtype(entry.file_type, entry.file_subtype),
entry.file_type,
entry.file_subtype,
TagHash(entry.reference),
entry.reference,
)
} else {
format!("{} (pkg entry not found)", tag)
Expand Down

0 comments on commit 0538e86

Please sign in to comment.