Skip to content

Commit a4feb15

Browse files
committed
Merge remote-tracking branch 'alex/master'
2 parents 0527cef + 3a5e9f7 commit a4feb15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/print/fuchsia.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ struct HexSlice<'a> {
312312
impl fmt::Display for HexSlice<'_> {
313313
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
314314
for byte in self.bytes {
315-
write!(f, "{:x}", byte)?;
315+
write!(f, "{:02x}", byte)?;
316316
}
317317
Ok(())
318318
}

0 commit comments

Comments
 (0)