aboutsummaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2021-01-13 19:01:49 -0800
committerBruce Hill <bruce@bruce-hill.com>2021-01-13 19:01:49 -0800
commit43aeadaab8c29351e506c03829c3dc74a9f6b86a (patch)
treeaa8ec115dee11f7a8adcd9f9e1a649bb5e985fb3 /vm.c
parent3443d817150e641221749bf129cc6716e6baaf32 (diff)
Replaced _exit()s with exits()
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 9e35334..68c793a 100644
--- a/vm.c
+++ b/vm.c
@@ -481,7 +481,7 @@ static match_t *_match(def_t *defs, file_t *f, const char *str, vm_op_t *op, uns
}
default: {
fprintf(stderr, "Unknown opcode: %d", op->type);
- _exit(1);
+ exit(1);
return NULL;
}
}