diff --git a/src/tty.c b/src/tty.c index 5cba761..988eb50 100644 --- a/src/tty.c +++ b/src/tty.c @@ -217,7 +217,7 @@ ssize_t tty_write(int fd, const void *buffer, size_t count) } else { - // Flush tty buffer if too full + // Force write of tty buffer if too full if ((tty_buffer_count + count) > BUFSIZ) { tty_sync(fd);