mirror of
https://github.com/thepigeongenerator/mcaselector-lite
synced 2026-02-07 23:28:09 +01:00
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:
@@ -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);
|
||||
va_end(ap);
|
||||
|
||||
exit(EXIT_FAILURE);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user