mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-01-11 10:30:09 +00:00
Fix fatal() macro
This commit is contained in:
parent
39a3b75024
commit
9baf8b4156
@ -70,7 +70,7 @@ RCSID("$OpenBSD: sshpty.c,v 1.4 2001/12/19 07:18:56 deraadt Exp $");
|
||||
#else /* stubs for BasiliskII */
|
||||
#define log printf
|
||||
#define error printf
|
||||
#define fatal(x) {printf("Fatal error: %s", x); return 0}
|
||||
#define fatal(x) do { printf("Fatal error: %s", x); return 0; } while(0)
|
||||
#endif /* not in BasiliskII */
|
||||
|
||||
/* Pty allocated with _getpty gets broken if we do I_PUSH:es to it. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user