aboutsummaryrefslogtreecommitdiff
path: root/src/op/if.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/op/if.c')
-rw-r--r--src/op/if.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/op/if.c b/src/op/if.c
index 2ef9565..2f5f4f5 100644
--- a/src/op/if.c
+++ b/src/op/if.c
@@ -25,7 +25,7 @@ static enum nw_state pop(struct nw_interp *const i)
else if (pif->condition)
nwp_interp_resume(i);
else
- nwp_break(i, 0);
+ nwp_break(i, 0, 0);
return NW_AGAIN;
}