Skip to content

Commit 7be171d

Browse files
committed
fix a stray semicolon
1 parent 1715559 commit 7be171d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/compiletest/src/header.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ impl Config {
549549
pub fn lldb_version_to_int(version_string: &str) -> isize {
550550
let error_string = format!("Encountered LLDB version string with unexpected format: {}",
551551
version_string);
552-
version_string.parse().expect(&error_string);
552+
version_string.parse().expect(&error_string)
553553
}
554554

555555
fn expand_variables(mut value: String, config: &Config) -> String {

0 commit comments

Comments
 (0)