diff --git a/ereport/types/src/lib.rs b/ereport/types/src/lib.rs index 9727684a6c8..af77d9297b5 100644 --- a/ereport/types/src/lib.rs +++ b/ereport/types/src/lib.rs @@ -110,7 +110,7 @@ pub struct EreportId { impl fmt::Display for EreportId { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - write!(f, "{:?}:{:x}", self.restart_id, self.ena) + write!(f, "{}:{:x}", self.restart_id, self.ena.0) } }