From ab281184497fcf79508e6c19c4214f8ebada20cb Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Wed, 4 Apr 2018 18:56:21 -0700 Subject: [PATCH] Fix driver dogfood bug --- src/driver.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/driver.rs b/src/driver.rs index 73746798601..711b2e6fbd9 100644 --- a/src/driver.rs +++ b/src/driver.rs @@ -126,7 +126,7 @@ impl<'a> CompilerCalls<'a> for ClippyCompilerCalls { #[allow(print_stdout)] fn show_version() { - println!("{}", env!("CARGO_PKG_VERSION")); + println!(env!("CARGO_PKG_VERSION"); } pub fn main() {