From 137a898eca70a1ac07ccb9767e6a6f2b389c0d2c Mon Sep 17 00:00:00 2001 From: Bhargava Shastry Date: Wed, 4 Sep 2019 21:14:26 +0200 Subject: [PATCH] Yul proto fuzzer: Fix typo in low level call --- test/tools/ossfuzz/protoToYul.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tools/ossfuzz/protoToYul.cpp b/test/tools/ossfuzz/protoToYul.cpp index 3f0f26f4c..70f0e3ec5 100644 --- a/test/tools/ossfuzz/protoToYul.cpp +++ b/test/tools/ossfuzz/protoToYul.cpp @@ -741,7 +741,7 @@ void ProtoConverter::visit(LowLevelCall const& _x) m_output << ", "; visit(_x.addr()); m_output << ", "; - if (type == LowLevelCall::CALL || LowLevelCall::CALLCODE) + if (type == LowLevelCall::CALL || type == LowLevelCall::CALLCODE) { visit(_x.wei()); m_output << ", ";