src/error.c

changeset 58
26ebb2f1e6e6
parent 16
c5dde81b6fb2
--- 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) {

mercurial