Skip to content

Commit 0308610

Browse files
committed
krun-guest: minor format fix
Signed-off-by: Sergio Lopez <[email protected]>
1 parent 2d3c889 commit 0308610

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

crates/krun/src/guest/bin/krun-guest.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ fn main() -> Result<()> {
4545
configure_network()?;
4646

4747
if let Some(hidpipe_client_path) = find_in_path("hidpipe-client")? {
48-
Command::new(hidpipe_client_path).arg(format!("{}", options.uid)).spawn()?;
48+
Command::new(hidpipe_client_path)
49+
.arg(format!("{}", options.uid))
50+
.spawn()?;
4951
}
5052

5153
let run_path = match setup_user(options.username, options.uid, options.gid) {

0 commit comments

Comments
 (0)