From 133a043822de4f15ed457cbba3ac2c39e385c36d Mon Sep 17 00:00:00 2001 From: Ludovic 'Archivist' Lagouardette Date: Wed, 11 Feb 2026 15:47:04 +0100 Subject: [PATCH] fixed a parsing bug --- lib.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib.c b/lib.c index b9e9913..ee8ecd7 100644 --- a/lib.c +++ b/lib.c @@ -74,6 +74,7 @@ static int routine_assert(struct context* ctx, int condition, int error, const c if (!coro->panic) coro->panic = error; while (*message) { ctx->putchar(ctx, *message); + ++message; } ctx->putchar(ctx, 10); }