summaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-07-27 17:36:07 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2023-07-27 17:36:07 -0700
commit44b19b01e22c0e2b24e97cbcab80aee953f978fd (patch)
tree3b81a27853b41b638d6b7904e2d33943328dc321 /vm.c
parent8c7cf2de98c56039820c2861d1f0ed85c0961e12 (diff)
Remove an obsoleted initialization from Wasm
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm.c b/vm.c
index 4815d385e1..f67bd30bdd 100644
--- a/vm.c
+++ b/vm.c
@@ -2355,7 +2355,7 @@ vm_exec(rb_execution_context_t *ec)
{
struct rb_vm_exec_context ctx = {
.ec = ec,
- .initial = 0, .result = Qundef,
+ .result = Qundef,
};
struct rb_wasm_try_catch try_catch;