Skip to content

Commit 4de08b7

Browse files
committed
Refix change
1 parent 67a3a68 commit 4de08b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/machine.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,10 @@ impl Provenance for Tag {
155155
fn fmt(ptr: &Pointer<Self>, f: &mut fmt::Formatter<'_>) -> fmt::Result {
156156
let (tag, addr) = ptr.into_parts(); // address is absolute
157157
write!(f, "0x{:x}", addr.bytes())?;
158-
// Forward `alternate` flag to `alloc_id` printing.
159158

160159
match tag {
161160
Tag::Concrete(tag) => {
161+
// Forward `alternate` flag to `alloc_id` printing.
162162
if f.alternate() {
163163
write!(f, "[{:#?}]", tag.alloc_id)?;
164164
} else {

0 commit comments

Comments
 (0)