From 8c703199cfe7e9fdadf72892fce0e6dad22dcad8 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Thu, 8 May 2025 22:33:05 +0100 Subject: [PATCH] frontend: update lex token usage --- frontend/debug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/debug.c b/frontend/debug.c index 45b2c51..5ba9ab7 100644 --- a/frontend/debug.c +++ b/frontend/debug.c @@ -9,8 +9,8 @@ extern void print_lex_token(struct ivy_token *tok) { - printf("[%lu:%lu - %lu:%lu] ", tok->t_start.p_row, tok->t_start.p_col, - tok->t_end.p_row, tok->t_end.p_col); + printf("[%lu:%lu - %lu:%lu] ", tok->t_start.c_row, tok->t_start.c_col, + tok->t_end.c_row, tok->t_end.c_col); switch (tok->t_type) { case IVY_TOK_KEYWORD: