More line number related changes.

This commit is contained in:
Andrea Odetti
2021-05-11 16:32:43 +01:00
committed by Oliver Schmidt
parent 93762a2117
commit 05f545e189
2 changed files with 6 additions and 6 deletions

View File

@@ -15,6 +15,6 @@
void __fastcall__ _afailed (char* file, unsigned line)
{
raise (SIGABRT);
fprintf (stderr, "ASSERTION FAILED IN %s(%u)\n", file, line);
fprintf (stderr, "ASSERTION FAILED IN %s:%u\n", file, line);
exit (EXIT_ASSERT);
}