From cd12b234be30a31aa93813392a8cf18e0ebbf810 Mon Sep 17 00:00:00 2001 From: Mike Miller Date: Fri, 10 Nov 2023 13:37:50 -0800 Subject: [PATCH] Merge upstream 636a35c (fix tiocgpgrp for pty master) --- fs/tty.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/tty.h b/fs/tty.h index 400e408cf0..b65a0c89ac 100644 --- a/fs/tty.h +++ b/fs/tty.h @@ -113,7 +113,7 @@ struct tty { // A flag is a marker indicating the end of a canonical mode input. Flags // are created by EOL and EOF characters. You can't backspace past a flag. bool buf_flag[TTY_BUF_SIZE]; - size_t bufsize; + dword_t bufsize; uint8_t packet_flags; cond_t produced; cond_t consumed;