this should suffice

This commit is contained in:
2022-09-11 14:58:51 +02:00
parent ab2fa4c050
commit 35942aadb6
2 changed files with 22 additions and 6 deletions

View File

@ -104,7 +104,7 @@ pub struct RequestId {
impl Display for RequestId {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
write!(f, "Request ID {:#08x}", self.raw())
write!(f, "{:#08x}", self.raw())
}
}