Skip to content

Commit 0ef3724

Browse files
committed
Run cargo fmt
1 parent 2f76568 commit 0ef3724

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/bin/cargo-bootimage.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ use bootimage::{
44
builder::Builder,
55
help,
66
};
7-
use std::{env, path::{PathBuf, Path}};
7+
use std::{
8+
env,
9+
path::{Path, PathBuf},
10+
};
811

912
pub fn main() -> Result<()> {
1013
let mut raw_args = env::args();

src/builder/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ pub enum BootloaderError {
100100
#[error("Could not find package for binary `{bin_name}` in cargo metadata output")]
101101
KernelBinPackageNotFound {
102102
/// The name of the kernel binary
103-
bin_name: String
103+
bin_name: String,
104104
},
105105
/// Could not find some required information in the `cargo metadata` output
106106
#[error("Could not find required key `{key}` in cargo metadata output")]

0 commit comments

Comments
 (0)