blob: 348fcc223062d006c1720c10e25f4a6d15611c67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
--- window.h.orig 2025-05-15 15:31:27 UTC
+++ window.h
@@ -79,7 +79,7 @@ struct pseudowin {
char p_cmd[MAXSTR];
char p_tty[MAXSTR];
char p_inbuf[IOSIZE]; /* buffered writing to p_ptyfd */
- size_t p_inlen;
+ int p_inlen;
};
/* bits for fdpat: */
@@ -157,9 +157,9 @@ struct Window {
int w_poll_zombie_timeout;
int w_ptyfd; /* fd of the master pty */
char w_inbuf[IOSIZE];
- size_t w_inlen;
+ int w_inlen;
char w_outbuf[IOSIZE];
- size_t w_outlen;
+ int w_outlen;
bool w_aflag; /* (-a option) */
bool w_dynamicaka; /* should we change name */
char *w_title; /* name of the window */
|