]> git.lizzy.rs Git - rust.git/commitdiff
use prettier printing
authorRalf Jung <post@ralfj.de>
Thu, 23 May 2019 13:54:50 +0000 (15:54 +0200)
committerRalf Jung <post@ralfj.de>
Thu, 23 May 2019 13:54:50 +0000 (15:54 +0200)
src/stacked_borrows.rs

index e76747ef8071fe2f488004c49ff63b3f875b7f33..332e44e6780e4c3f77776c10f05d115c7bcc91b4 100644 (file)
@@ -545,7 +545,7 @@ fn reborrow(
         let this = self.eval_context_mut();
         let protector = if protect { Some(this.frame().extra) } else { None };
         let ptr = place.ptr.to_ptr()?;
-        trace!("reborrow: {:?} reference {} derived from {} (pointee {}): {:?}, size {}",
+        trace!("reborrow: {} reference {} derived from {} (pointee {}): {:?}, size {}",
             kind, new_tag, ptr.tag, place.layout.ty, ptr, size.bytes());
 
         // Get the allocation. It might not be mutable, so we cannot use `get_mut`.