diff options
Diffstat (limited to 'src/tools/execution-results.h')
-rw-r--r-- | src/tools/execution-results.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/execution-results.h b/src/tools/execution-results.h index 2a42b941b..13771a69d 100644 --- a/src/tools/execution-results.h +++ b/src/tools/execution-results.h @@ -62,8 +62,9 @@ struct ExecutionResults { // execute all exported methods (that are therefore preserved through // opts) for (auto& exp : wasm.exports) { - if (exp->kind != ExternalKind::Function) + if (exp->kind != ExternalKind::Function) { continue; + } std::cout << "[fuzz-exec] calling " << exp->name << "\n"; auto* func = wasm.getFunction(exp->value); if (func->result != none) { |