Skip to content

Commit fbfd2d4

Browse files
authored
re-add spaces before static kind
1 parent aaba692 commit fbfd2d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/memory.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -528,8 +528,8 @@ impl<'a, 'tcx> Memory<'a, 'tcx> {
528528
}
529529

530530
let immutable = match alloc.static_kind {
531-
StaticKind::Mutable => "(static mut)",
532-
StaticKind::Immutable => "(immutable)",
531+
StaticKind::Mutable => " (static mut)",
532+
StaticKind::Immutable => " (immutable)",
533533
StaticKind::NotStatic => "",
534534
};
535535
trace!("{}({} bytes){}", msg, alloc.bytes.len(), immutable);

0 commit comments

Comments
 (0)