From 086eaf8f69b736a7f4b6b8ee232540993d0c255d Mon Sep 17 00:00:00 2001 From: Tom Eccles Date: Wed, 10 Jun 2020 09:01:01 +0100 Subject: [PATCH] tools: remote-test-client: fix typo Thanks to jfrimmel for pointing this out Co-authored-by: J. Frimmel <31166235+jfrimmel@users.noreply.github.com> --- src/tools/remote-test-client/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/remote-test-client/src/main.rs b/src/tools/remote-test-client/src/main.rs index 299ec0f0b4c..1fafe109d34 100644 --- a/src/tools/remote-test-client/src/main.rs +++ b/src/tools/remote-test-client/src/main.rs @@ -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), } }