diff options
Diffstat (limited to 'src/treeify.c')
-rw-r--r-- | src/treeify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/treeify.c b/src/treeify.c index 8da6481..5539d21 100644 --- a/src/treeify.c +++ b/src/treeify.c @@ -12,7 +12,7 @@ static void __expect(struct ctx *ctx, struct token *token, enum token_type type, if (token->type != type) { printf("[DBG] %s:%d: %s\n", file, line, func); token_print(ctx, token); - err("Expected token of type %s!\n", type_enum); + errln(&token->location, "Expected token of type %s", type_enum); } } |