Skip to content

Commit

Permalink
Fix typo in panic message.
Browse files Browse the repository at this point in the history
  • Loading branch information
frewsxcv committed May 12, 2018
1 parent f58ffc2 commit a0bc41f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ fn main() {
// check that "cargo hfuzz" command is at the same version as this file
let honggfuzz_build_version = env::var("CARGO_HONGGFUZZ_BUILD_VERSION").unwrap_or("unknown".to_string());
if VERSION != honggfuzz_build_version {
eprintln!("hongfuzz dependency ({}) and build command ({}) versions do not match",
eprintln!("honggfuzz dependency ({}) and build command ({}) versions do not match",
VERSION, honggfuzz_build_version);
process::exit(1);
}
Expand Down

0 comments on commit a0bc41f

Please sign in to comment.