From 251584615d15e6f78329be10bd0cac92626eb24f Mon Sep 17 00:00:00 2001 From: Christophe Biocca Date: Sat, 4 Mar 2017 16:30:37 -0500 Subject: [PATCH] fuzzer_sys -> libfuzzer_sys Running the fuzzing code fails right now. Changing the crate declaration to `extern crate libfuzzer_sys` makes it work properly. --- fuzz/fuzzers/parse.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzz/fuzzers/parse.rs b/fuzz/fuzzers/parse.rs index 8f02b885..f9ff8e37 100644 --- a/fuzz/fuzzers/parse.rs +++ b/fuzz/fuzzers/parse.rs @@ -1,6 +1,6 @@ #![no_main] -extern crate fuzzer_sys; +extern crate libfuzzer_sys; extern crate url; use std::slice;