diff options
Diffstat (limited to 'src/analyze.c')
-rw-r--r-- | src/analyze.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyze.c b/src/analyze.c index 37b2e65..077e7d8 100644 --- a/src/analyze.c +++ b/src/analyze.c @@ -418,7 +418,7 @@ static int analyze(struct state *state, struct scope *scope, struct ast *node) case AST_CONST_STR: ret = analyze_str (state, scope, node); break; default: - internal_error("missing ast analysis"); + internal_error("missing ast analysis for %s", ast_str(node->k)); return -1; } |