Skip to content

Commit

Permalink
Merge pull request #840 from koinos/fix-formatting
Browse files Browse the repository at this point in the history
Fix formatting
  • Loading branch information
sgerbino authored Aug 21, 2024
2 parents 52b9f09 + 9453f85 commit e768cba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/koinos/vm_manager/fizzy/fizzy_vm_backend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ void fizzy_runner::instantiate_module()
FizzyValueTypeI32 };
size_t invoke_thunk_num_args = 6;
FizzyExternalFunction invoke_thunk_fn = {
{FizzyValueTypeI32, invoke_thunk_arg_types, invoke_thunk_num_args},
{ FizzyValueTypeI32, invoke_thunk_arg_types, invoke_thunk_num_args },
invoke_thunk,
this
};
Expand All @@ -177,7 +177,7 @@ void fizzy_runner::instantiate_module()
FizzyValueTypeI32 };
size_t invoke_system_call_num_args = 6;
FizzyExternalFunction invoke_system_call_fn = {
{FizzyValueTypeI32, invoke_system_call_arg_types, invoke_system_call_num_args},
{ FizzyValueTypeI32, invoke_system_call_arg_types, invoke_system_call_num_args },
invoke_system_call,
this
};
Expand Down

0 comments on commit e768cba

Please sign in to comment.