From a14f14f690df0abd9da52b20422199e6bc6f4a51 Mon Sep 17 00:00:00 2001 From: Alex Burka Date: Sat, 2 Apr 2016 02:13:36 -0400 Subject: [PATCH] add missing spaces in #16758 warning --- src/librustc_trans/glue.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/librustc_trans/glue.rs b/src/librustc_trans/glue.rs index 1af816845b0b5..a70e877c89609 100644 --- a/src/librustc_trans/glue.rs +++ b/src/librustc_trans/glue.rs @@ -561,8 +561,8 @@ fn make_drop_glue<'blk, 'tcx>(bcx: Block<'blk, 'tcx>, v0: ValueRef, g: DropGlueK } else { // Give the user a heads up that we are doing something // stupid and dangerous. - bcx.sess().warn(&format!("Ignoring drop flag in destructor for {}\ - because the struct is unsized. See issue\ + bcx.sess().warn(&format!("Ignoring drop flag in destructor for {} \ + because the struct is unsized. See issue \ #16758", t)); trans_struct_drop(bcx, t, v0) }