[libFuzzer] code refactoring; NFC
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk/lib/fuzzer@360400 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/FuzzerDataFlowTrace.cpp b/FuzzerDataFlowTrace.cpp
index 466312f..ac54fcf 100644
--- a/FuzzerDataFlowTrace.cpp
+++ b/FuzzerDataFlowTrace.cpp
@@ -197,10 +197,8 @@
}
int CollectDataFlow(const std::string &DFTBinary, const std::string &DirPath,
- const Vector<std::string> &CorpusDirs,
- const Vector<std::string> &ExtraSeeds) {
- Printf("INFO: collecting data flow. DFTBinary: %s DirPath: %s\n",
- DFTBinary.c_str(), DirPath.c_str());
+ const Vector<SizedFile> &CorporaFiles) {
+ Printf("INFO: collecting data flow for %zd files\n", CorporaFiles.size());
return 0;
}