diff options
author | Martin Mares <mj@ucw.cz> | 1998-12-20 14:27:37 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1998-12-20 14:27:37 +0000 |
commit | 08c69a7720af32a82b8e2b4b9ea3742074b3b8ee (patch) | |
tree | 3405e18d16397ef85f97c34b3cd08a54ff689af0 /sysdep/unix/main.c | |
parent | ee969ea7f4c4f40020e4209b167da04d04aba52c (diff) |
die() -> bug() where appropriate.
Diffstat (limited to 'sysdep/unix/main.c')
-rw-r--r-- | sysdep/unix/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdep/unix/main.c b/sysdep/unix/main.c index f5076c41..a2b33180 100644 --- a/sysdep/unix/main.c +++ b/sysdep/unix/main.c @@ -121,5 +121,5 @@ main(void) debug("Entering I/O loop.\n"); io_loop(); - die("I/O loop died"); + bug("I/O loop died"); } |