From dc274e68a7085491519cb4f3c5613c0321751c6f Mon Sep 17 00:00:00 2001 From: varkor Date: Fri, 5 Jan 2018 00:41:37 +0000 Subject: [PATCH] Fix tidy error --- src/librustc_driver/driver.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/librustc_driver/driver.rs b/src/librustc_driver/driver.rs index 5875ccbfd585..c6b51f69406d 100644 --- a/src/librustc_driver/driver.rs +++ b/src/librustc_driver/driver.rs @@ -128,7 +128,8 @@ pub fn compile_input(trans: Box, if sess.opts.will_create_output_file() { if outputs.contains_path(input_path) { sess.err(&format!( - "the input file \"{}\" would be overwritten by the generated executable", + "the input file \"{}\" would be overwritten by the generated \ + executable", input_path.display())); return Err(CompileIncomplete::Stopped); }