From 7be171db70685eb4f6465f2d9047f8bfe1651708 Mon Sep 17 00:00:00 2001 From: Andre Bogus Date: Thu, 29 Jun 2017 23:38:13 +0200 Subject: [PATCH] fix a stray semicolon --- src/tools/compiletest/src/header.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/compiletest/src/header.rs b/src/tools/compiletest/src/header.rs index c9e24492207d..5ac60d8f2c85 100644 --- a/src/tools/compiletest/src/header.rs +++ b/src/tools/compiletest/src/header.rs @@ -549,7 +549,7 @@ impl Config { pub fn lldb_version_to_int(version_string: &str) -> isize { let error_string = format!("Encountered LLDB version string with unexpected format: {}", version_string); - version_string.parse().expect(&error_string); + version_string.parse().expect(&error_string) } fn expand_variables(mut value: String, config: &Config) -> String {