Skip to content

Commit ab72b4e

Browse files
committed
Use hexadecimal encoding for TRAP labels
1 parent ed93233 commit ab72b4e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extractor/src/extractor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -756,7 +756,7 @@ struct Label(u32);
756756

757757
impl fmt::Display for Label {
758758
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
759-
write!(f, "#{}", self.0)
759+
write!(f, "#{:x}", self.0)
760760
}
761761
}
762762

0 commit comments

Comments
 (0)