aboutsummaryrefslogtreecommitdiffstats
path: root/src/bootstrap/lexer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bootstrap/lexer.c')
-rw-r--r--src/bootstrap/lexer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bootstrap/lexer.c b/src/bootstrap/lexer.c
index 49431d0..72df1ee 100644
--- a/src/bootstrap/lexer.c
+++ b/src/bootstrap/lexer.c
@@ -215,10 +215,10 @@ tokenize(const StringView *sv) {
215 } 215 }
216 if (!found) { 216 if (!found) {
217 error_push((Error){ 217 error_push((Error){
218 .type = ERR_TYPE_LEXER, 218 .type = ERR_TYPE_LEXER,
219 .value = ERR_UNMATCHED_STRING, 219 .value = ERR_UNMATCHED_STRING,
220 .line = line, 220 .line = line,
221 .col = col, 221 .col = col,
222 }); 222 });
223 return tokens; 223 return tokens;
224 } 224 }