File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -609,7 +609,7 @@ void V8::getModuleFunctionImpl(std::string_view function_name,
609
609
" Bad function signature for: " + std::string (function_name) +
610
610
" , want: " + printValTypes (arg_valtypes) + " -> " + printValTypes (result_valtypes) +
611
611
" , but the module exports: " + printValTypes (func->type ()->params ()) + " -> " +
612
- printValTypes (result_valtypes ));
612
+ printValTypes (func-> type ()-> results () ));
613
613
*function = nullptr ;
614
614
return ;
615
615
}
@@ -641,7 +641,7 @@ void V8::getModuleFunctionImpl(std::string_view function_name,
641
641
" Bad function signature for: " + std::string (function_name) +
642
642
" , want: " + printValTypes (arg_valtypes) + " -> " + printValTypes (result_valtypes) +
643
643
" , but the module exports: " + printValTypes (func->type ()->params ()) + " -> " +
644
- printValTypes (result_valtypes ));
644
+ printValTypes (func-> type ()-> results () ));
645
645
*function = nullptr ;
646
646
return ;
647
647
}
You can’t perform that action at this time.
0 commit comments