This commit is contained in:
Martin Lund 2022-07-22 16:40:15 +02:00
parent b322ecbdcf
commit f454bdaa3a

View file

@ -217,7 +217,7 @@ ssize_t tty_write(int fd, const void *buffer, size_t count)
} }
else else
{ {
// Flush tty buffer if too full // Force write of tty buffer if too full
if ((tty_buffer_count + count) > BUFSIZ) if ((tty_buffer_count + count) > BUFSIZ)
{ {
tty_sync(fd); tty_sync(fd);