Skip to content

Commit 5eea708

Browse files
committed
Fix "unnecessary trailing semicolon" warning on Rust 1.51
1 parent 9ade8ce commit 5eea708

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Unreleased
22

3+
- Fix "unnnecessary trailing semicolon" warning on Rust 1.51
4+
35
# 0.10.2 – 2020-12-10
46

57
- Fix nightly breakage of doctests in workspaces ([#69](https://github.com/rust-osdev/bootimage/pull/69))

src/args/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ impl BuildCommand {
3030
return Err(anyhow!("multiple arguments of same type provided"));
3131
}
3232
Ok(())
33-
};
33+
}
3434

3535
let mut arg_iter = args;
3636
while let Some(arg) = arg_iter.next() {

0 commit comments

Comments
 (0)