No warnings
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m30s

This commit is contained in:
2026-03-07 17:41:22 +01:00
parent 5e616c1879
commit 55d9b1fcd5
8 changed files with 6 additions and 10 deletions

View File

@@ -64,6 +64,8 @@ struct editor {
static struct editor editor;
static bool prepare_lines_cb (void* ctx, const char* start, size_t len) {
(void)ctx;
struct edit_line* line = malloc (sizeof (*line));
if (line == NULL)

View File

@@ -169,7 +169,7 @@ void parse_and_execute (struct list_node_link* tokens) {
parser.next = get_token (tokens);
while (parser.next != NULL) {
volatile struct ast_node* root = parse_precedence (&parser, PREC_NONE);
struct ast_node* root = parse_precedence (&parser, PREC_NONE);
if (root != NULL) {
struct context context;