fix: sparse issue with EXIT_FAILURE.

EXIT_FAILURE aparrently is defined the same for every platform, so there
is no fucking difference using this macro.
This commit is contained in:
2026-01-22 15:35:45 +01:00
parent ebcd150415
commit 0d59153a58

View File

@@ -61,5 +61,5 @@ void error_fatal(uint ln, const char *restrict file, const char *restrict fmt, .
error_log(stdout, "\033[101mFAT\033[0m", ln, file, fmt, ap); error_log(stdout, "\033[101mFAT\033[0m", ln, file, fmt, ap);
va_end(ap); va_end(ap);
exit(EXIT_FAILURE); exit(1);
} }