aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-05-03 18:28:02 +0800
committerGitHub <noreply@github.com>2017-05-03 18:28:02 +0800
commitd92fbe643d0b4006bbb84cc738646a0d08f1a9ad (patch)
tree278acad8f26eacc13c2ae340e6620dd60069df8a
parentb6c37dd912c47800f7151a37d26aac08f46e13bf (diff)
parentbd6e891704ac32aafba5dbe7d6b48dc1436308ef (diff)
downloaddexon-solidity-d92fbe643d0b4006bbb84cc738646a0d08f1a9ad.tar.gz
dexon-solidity-d92fbe643d0b4006bbb84cc738646a0d08f1a9ad.tar.zst
dexon-solidity-d92fbe643d0b4006bbb84cc738646a0d08f1a9ad.zip
Merge pull request #2216 from ethereum/compilerfix
Fix return value in the fuzzer.
-rw-r--r--test/fuzzer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fuzzer.cpp b/test/fuzzer.cpp
index afa50671..053d880f 100644
--- a/test/fuzzer.cpp
+++ b/test/fuzzer.cpp
@@ -205,7 +205,7 @@ Allowed options)",
catch (po::error const& _exception)
{
cerr << _exception.what() << endl;
- return false;
+ return 1;
}
if (arguments.count("quiet"))