--- a/src/error.c Wed Apr 10 19:43:34 2024 +0200 +++ b/src/error.c Fri Apr 12 22:03:15 2024 +0200 @@ -51,7 +51,7 @@ cxBufferWrite(text.ptr, 1, text.length, buf); cxBufferPut(buf, '\n'); - asc_set_flag(&asc_context.flags, ASC_FLAG_HAS_ERROR); + asc_set_flag(asc_context.flags, ASC_FLAG_HAS_ERROR); } bool asc_has_error(void) { @@ -68,7 +68,7 @@ void asc_clear_error(void) { cxBufferClear(&asc_context.error_buffer); - asc_clear_flag(&asc_context.flags, ASC_FLAG_HAS_ERROR); + asc_clear_flag(asc_context.flags, ASC_FLAG_HAS_ERROR); } void asc_error_gl(unsigned code, cxstring message) {