diff options
author | June McEnroe <june@causal.agency> | 2018-08-11 12:47:39 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-08-11 12:47:39 -0400 |
commit | a1bb27ae01b1b77c4ca18e5edd727b203c3c004e (patch) | |
tree | 9bb7259ecbb426f4550e47066b9482a429df05e5 | |
parent | Fix removing entries during tab complete (diff) | |
download | catgirl-a1bb27ae01b1b77c4ca18e5edd727b203c3c004e.tar.gz catgirl-a1bb27ae01b1b77c4ca18e5edd727b203c3c004e.zip |
Fix commented out error handling
Oops. Had commented it out so I could attach a debugger without exiting on EINTR.
Diffstat (limited to '')
-rw-r--r-- | chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chat.c b/chat.c index c85a1fe..ed33fbd 100644 --- a/chat.c +++ b/chat.c @@ -145,7 +145,7 @@ static char *prompt(const char *prompt) { fflush(stdout); ssize_t len = getline(&line, &cap, stdin); - //if (ferror(stdin)) err(EX_IOERR, "getline"); + if (ferror(stdin)) err(EX_IOERR, "getline"); if (feof(stdin)) exit(EX_OK); if (len < 2) continue; |