Skip to content

Commit

Permalink
tools: remote-test-client: fix typo
Browse files Browse the repository at this point in the history
Thanks to jfrimmel for pointing this out

Co-authored-by: J. Frimmel <[email protected]>
  • Loading branch information
tblah and jfrimmel authored Jun 10, 2020
1 parent 253112d commit 086eaf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/remote-test-client/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ fn start_qemu_emulator(target: &str, rootfs: &Path, server: &Path, tmpdir: &Path
.arg(&format!("file={},format=raw,id=hd0", &rootfs_img.to_string_lossy()));
t!(cmd.spawn());
}
_ => panic!("cannot start emulator for: {}" < target),
_ => panic!("cannot start emulator for: {}", target),
}
}

Expand Down

0 comments on commit 086eaf8

Please sign in to comment.