From fbfd2d4bca94ba2d19b89724d8450cbff52a0484 Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Wed, 8 Feb 2017 09:17:48 +0100 Subject: [PATCH] re-add spaces before static kind --- src/memory.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/memory.rs b/src/memory.rs index 0b5f90f3fc8b..8f0c3a5622c9 100644 --- a/src/memory.rs +++ b/src/memory.rs @@ -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);