aboutsummaryrefslogtreecommitdiff
path: root/libfuzzer/FuzzerUtilFuchsia.cpp
diff options
context:
space:
mode:
authorJoel Galenson <jgalenson@google.com>2021-05-19 15:49:46 -0700
committerJoel Galenson <jgalenson@google.com>2021-05-19 15:49:46 -0700
commitb6e853daaa9d6a5afe2da52c21b3e7026ae1687b (patch)
treecaf780cfbf8362ace6d27a72e2805b56b856ca1b /libfuzzer/FuzzerUtilFuchsia.cpp
parentd1325ea49959305aec6fa54768f6d694aae3e4b7 (diff)
downloadlibfuzzer-sys-b6e853daaa9d6a5afe2da52c21b3e7026ae1687b.tar.gz
Upgrade rust/crates/libfuzzer-sys to 0.4.1
Test: make Change-Id: I286b57afddb3453e0e11cf22bc427d41611fe1db
Diffstat (limited to 'libfuzzer/FuzzerUtilFuchsia.cpp')
-rw-r--r--libfuzzer/FuzzerUtilFuchsia.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libfuzzer/FuzzerUtilFuchsia.cpp b/libfuzzer/FuzzerUtilFuchsia.cpp
index af43946..5034b4a 100644
--- a/libfuzzer/FuzzerUtilFuchsia.cpp
+++ b/libfuzzer/FuzzerUtilFuchsia.cpp
@@ -515,7 +515,7 @@ int ExecuteCommand(const Command &Cmd) {
return rc;
}
- return Info.return_code;
+ return static_cast<int>(Info.return_code);
}
bool ExecuteCommand(const Command &BaseCmd, std::string *CmdOutput) {