Skip to content

Commit

Permalink
Merge #2
Browse files Browse the repository at this point in the history
2: Fix typo in error message. r=PaulGrandperrin a=frewsxcv
  • Loading branch information
bors[bot] committed Mar 27, 2018
2 parents 310ecdd + 58c5f5c commit 131f74a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/bin/cargo-hfuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const HONGGFUZZ_TARGET: &'static str = "hfuzz_target";
const HONGGFUZZ_WORKSPACE: &'static str = "hfuzz_workspace";

#[cfg(target_family="windows")]
compile_error!("honggfuzz-rs does not currenlty support Windows but works well under WSL (Windows Subsystem for Linux)");
compile_error!("honggfuzz-rs does not currently support Windows but works well under WSL (Windows Subsystem for Linux)");

fn target_triple() -> String {
let output = Command::new("rustc").args(&["-v", "-V"]).output().unwrap();
Expand Down
4 changes: 2 additions & 2 deletions src/bin/cargo-honggfuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::os::unix::process::CommandExt;
const HONGGFUZZ_TARGET: &'static str = "hfuzz_target";

#[cfg(target_family="windows")]
compile_error!("honggfuzz-rs does not currenlty support Windows but works well under WSL (Windows Subsystem for Linux)");
compile_error!("honggfuzz-rs does not currently support Windows but works well under WSL (Windows Subsystem for Linux)");

fn main() {
let mut args = env::args().skip(1);
Expand All @@ -31,4 +31,4 @@ fn main() {
// code flow will only reach here if honggfuzz failed to execute
eprintln!("cannot execute {}, try to execute \"cargo hfuzz build\" from fuzzed project directory", &command);
process::exit(1);
}
}

0 comments on commit 131f74a

Please sign in to comment.