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
+2 -2
View File
@@ -528,8 +528,8 @@ pub fn dump_allocs(&self, mut allocs: Vec<AllocId>) {
}
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);