about summary refs log tree commit diff
path: root/src/tools/compiletest
diff options
context:
space:
mode:
authorAndre Bogus <bogusandre@gmail.com>2017-06-29 23:38:13 +0200
committerAndre Bogus <bogusandre@gmail.com>2017-06-29 23:38:13 +0200
commit7be171db70685eb4f6465f2d9047f8bfe1651708 (patch)
tree10b00ae3fe9fc6137a18b53e323df9b99a6635f3 /src/tools/compiletest
parent1715559f82a7576c8d64430dbff05bc007f1a6e9 (diff)
downloadrust-7be171db70685eb4f6465f2d9047f8bfe1651708.tar.gz
rust-7be171db70685eb4f6465f2d9047f8bfe1651708.zip
fix a stray semicolon
Diffstat (limited to 'src/tools/compiletest')
-rw-r--r--src/tools/compiletest/src/header.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/compiletest/src/header.rs b/src/tools/compiletest/src/header.rs
index c9e24492207..5ac60d8f2c8 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 {