From bada9c6a298223499707d8ea9445a8fac591e139 Mon Sep 17 00:00:00 2001 From: Matteo Flebus Date: Fri, 30 Jan 2026 18:35:26 +0100 Subject: [PATCH] fix: building now --- src/parser/parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/parser.c b/src/parser/parser.c index ec60b71..d1f0ebc 100644 --- a/src/parser/parser.c +++ b/src/parser/parser.c @@ -15,7 +15,7 @@ int parser_init(void) if (state == PARSER_STATE_READY) { perror("Internal error: tried to initialize the parser module twice."); - return NULL; + return false; } int success = grammar_init(); if (success == false)