cli report: Generate virtual addresses as uppercase

Matches dtk symbols.txt and most projects' identifiers.
This commit is contained in:
Robin Avery 2024-02-29 22:42:53 -05:00
parent 5cfd04fd4f
commit 54fb451337
No known key found for this signature in database
GPG Key ID: 633B2D5AB640375C
1 changed files with 1 additions and 1 deletions

View File

@ -474,7 +474,7 @@ fn read_report(path: &Path) -> Result<Report> {
fn serialize_hex<S>(x: &Option<u64>, s: S) -> Result<S::Ok, S::Error>
where S: serde::Serializer {
if let Some(x) = x {
s.serialize_str(&format!("{:#x}", x))
s.serialize_str(&format!("{:#X}", x))
} else {
s.serialize_none()
}