aboutsummaryrefslogtreecommitdiffstats
path: root/forthmachine.c
diff options
context:
space:
mode:
Diffstat (limited to 'forthmachine.c')
-rw-r--r--forthmachine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/forthmachine.c b/forthmachine.c
index a421630..6cdefb5 100644
--- a/forthmachine.c
+++ b/forthmachine.c
@@ -8,7 +8,7 @@
forthmachine* forthmachine_new(errorhandler errorhandler) {
forthmachine* fm = (forthmachine*)malloc(sizeof(forthmachine));
- fm->ot = optable_new();
+ fm->ot = optable_new(errorhandler);
fm->s = stack_new(errorhandler);
fm->outputbuffer = (char*)malloc(sizeof(char) * MAX_OUTPUT_BUFFER_SIZE);
fm->errorhandler = errorhandler;