Use bye in place of fatal.

This commit is contained in:
david 2012-08-28 14:29:37 +00:00
parent f45f2f394e
commit f9867163da

View file

@ -463,7 +463,7 @@ static int stdin_is_reg(void) {
struct stat buf;
if (fstat(STDIN_FILENO, &buf) < 0)
fatal("fstat(): %s", strerror(errno));
bye("fstat(): %s", strerror(errno));
return S_ISREG(buf.st_mode);
}