Skip to content

Commit

Permalink
C API: Fix parameter type for compilation mode configuration (#1296)
Browse files Browse the repository at this point in the history
fix parameter type for compilation mode configuration
  • Loading branch information
turbolent authored Nov 7, 2024
1 parent b78079c commit 7a302a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/c_api/include/wasmi/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ enum wasmi_compilation_mode_enum {
*
* Default value: #WASMI_COMPILATION_MODE_EAGER
*/
WASMI_CONFIG_PROP(void, compilation_mode, wasmi_compilation_mode_enum)
WASMI_CONFIG_PROP(void, compilation_mode, enum wasmi_compilation_mode_enum)

#undef WASMI_CONFIG_PROP

Expand Down

0 comments on commit 7a302a9

Please sign in to comment.