re-add spaces before static kind

This commit is contained in:
Oliver Schneider 2017-02-08 09:17:48 +01:00 committed by GitHub
parent aaba692eff
commit fbfd2d4bca

View file

@ -528,8 +528,8 @@ impl<'a, 'tcx> Memory<'a, 'tcx> {
}
let immutable = match alloc.static_kind {
StaticKind::Mutable => "(static mut)",
StaticKind::Immutable => "(immutable)",
StaticKind::Mutable => " (static mut)",
StaticKind::Immutable => " (immutable)",
StaticKind::NotStatic => "",
};
trace!("{}({} bytes){}", msg, alloc.bytes.len(), immutable);