aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode/errors.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode/errors.c')
-rwxr-xr-xsrc/bytecode/errors.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bytecode/errors.c b/src/bytecode/errors.c
index b4595a1..b2aab93 100755
--- a/src/bytecode/errors.c
+++ b/src/bytecode/errors.c
@@ -17,6 +17,7 @@ static const char* error_msgs[] = {
17 [ERR_DIVISION_BY_ZERO] = "error: division by zero", 17 [ERR_DIVISION_BY_ZERO] = "error: division by zero",
18 [ERR_PC_OOB] = "error: pc out of bounds", 18 [ERR_PC_OOB] = "error: pc out of bounds",
19 [ERR_EMPTY_CHUNK] = "error: empty chunk", 19 [ERR_EMPTY_CHUNK] = "error: empty chunk",
20 [ERR_AMBIGUOUS_PARAMS] = "error: ambiguous parameter names",
20}; 21};
21 22
22static Error errors[ERR_MAX_NUMBER]; 23static Error errors[ERR_MAX_NUMBER];