about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-04-03 15:01:47 -0700
committerbors <bors@rust-lang.org>2016-04-03 15:01:47 -0700
commitf92ce2e9fe56942e0fd6a18d0e11bc4a9bdf8ddd (patch)
tree5740f0211a292ddec6bc1d111c80fda2705e1a0d /src
parent9c2186d4d7427deef9d7c40cd34bf915904a6b09 (diff)
parenta14f14f690df0abd9da52b20422199e6bc6f4a51 (diff)
downloadrust-f92ce2e9fe56942e0fd6a18d0e11bc4a9bdf8ddd.tar.gz
rust-f92ce2e9fe56942e0fd6a18d0e11bc4a9bdf8ddd.zip
Auto merge of #32676 - durka:patch-18, r=alexcrichton
add missing spaces in #16758 warning

I should probably add a test.
Diffstat (limited to 'src')
-rw-r--r--src/librustc_trans/glue.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_trans/glue.rs b/src/librustc_trans/glue.rs
index 6ef4ed4b87e..5676024ea95 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)
                     }