diff options
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerUtil.cpp')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerUtil.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerUtil.cpp b/llvm/lib/Fuzzer/FuzzerUtil.cpp index 8d3480cf480..20a41e0d4fb 100644 --- a/llvm/lib/Fuzzer/FuzzerUtil.cpp +++ b/llvm/lib/Fuzzer/FuzzerUtil.cpp @@ -69,8 +69,8 @@ int NumberOfCpuCores() { return N; } -void ExecuteCommand(const std::string &Command) { - system(Command.c_str()); +int ExecuteCommand(const std::string &Command) { + return system(Command.c_str()); } bool ToASCII(Unit &U) { |