From 315163ed599d09cfdb735a6050905b9869b72fac Mon Sep 17 00:00:00 2001 From: Adam Procter <71457435+aprocter-stripe@users.noreply.github.com> Date: Thu, 2 Dec 2021 16:57:09 -0800 Subject: [PATCH] Fix typecheck call in fuzz_dash_e.cc (#4958) --- test/fuzz/fuzz_dash_e.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fuzz/fuzz_dash_e.cc b/test/fuzz/fuzz_dash_e.cc index 5717a3c489a..131f475da25 100644 --- a/test/fuzz/fuzz_dash_e.cc +++ b/test/fuzz/fuzz_dash_e.cc @@ -72,6 +72,6 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { indexed = realmain::pipeline::index(gs, inputFiles, *opts, *workers, kvstore); indexed = move(realmain::pipeline::resolve(gs, move(indexed), *opts, *workers).result()); - realmain::pipeline::typecheck(gs, move(indexed), *opts, *workers).result(); + realmain::pipeline::typecheck(gs, move(indexed), *opts, *workers); return 0; }