add a trailing newline to double-fatal message
apparently 'puts' has a trailing newline but 'fputs' doesn't
This commit is contained in:
parent
ecb2d5f63a
commit
baa23cb527
@ -15,7 +15,7 @@ NORETURN NOINLINE void fatal(char* s) {
|
|||||||
gc_depth=1;
|
gc_depth=1;
|
||||||
#endif
|
#endif
|
||||||
if (inErr) {
|
if (inErr) {
|
||||||
fputs("\nCBQN encountered a fatal error during information printing of another fatal error. Exiting without printing more info.", stderr);
|
fputs("\nCBQN encountered a fatal error during information printing of another fatal error. Exiting without printing more info.\n", stderr);
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
__builtin_trap();
|
__builtin_trap();
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user