From 5e257cbf702e57fd55f8477a63236bdb9ce454f4 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 20 Apr 2021 17:42:10 +0200 Subject: Awesome stuff --- src/warnings.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/warnings.c') diff --git a/src/warnings.c b/src/warnings.c index d9c7be6..b5a7851 100644 --- a/src/warnings.c +++ b/src/warnings.c @@ -11,7 +11,7 @@ struct warning { u8 exists; - struct context *ctx; + struct context ctx; char text[WARNING_LENGTH]; }; @@ -22,7 +22,7 @@ void warnings_add(struct context *ctx, const char *fmt, ...) assert(warning_index + 1 < WARNING_COUNT); warnings[warning_index].exists = 1; - warnings[warning_index].ctx = ctx; + warnings[warning_index].ctx = *ctx; va_list ap; va_start(ap, fmt); @@ -40,7 +40,7 @@ void warnings_print(void) continue; /* gui_show_warning(warnings[i].text); */ - printf("Line %d:%d: %s\n", warnings[i].ctx->line, warnings[i].ctx->column, + printf("Line %d:%d: %s\n", warnings[i].ctx.line, warnings[i].ctx.column, warnings[i].text); } } -- cgit v1.2.3