summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/mruby/compile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby/compile.h b/include/mruby/compile.h
index 387206686..0f7cffd08 100644
--- a/include/mruby/compile.h
+++ b/include/mruby/compile.h
@@ -37,7 +37,7 @@ void mrbc_partial_hook(mrb_state *mrb, mrbc_context *c, int (*partial_hook)(stru
/* AST node structure */
typedef struct mrb_ast_node {
struct mrb_ast_node *car, *cdr;
- short lineno;
+ uint16_t lineno;
char const* filename;
} mrb_ast_node;