aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
Diffstat (limited to 'st.c')
-rw-r--r--st.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/st.c b/st.c
index 75c191d..839dc94 100644
--- a/st.c
+++ b/st.c
@@ -905,14 +905,14 @@ ttysend(char *s, size_t n)
905} 905}
906 906
907void 907void
908ttyresize(void) 908ttyresize(int tw, int th)
909{ 909{
910 struct winsize w; 910 struct winsize w;
911 911
912 w.ws_row = term.row; 912 w.ws_row = term.row;
913 w.ws_col = term.col; 913 w.ws_col = term.col;
914 w.ws_xpixel = win.tw; 914 w.ws_xpixel = tw;
915 w.ws_ypixel = win.th; 915 w.ws_ypixel = th;
916 if (ioctl(cmdfd, TIOCSWINSZ, &w) < 0) 916 if (ioctl(cmdfd, TIOCSWINSZ, &w) < 0)
917 fprintf(stderr, "Couldn't set window size: %s\n", strerror(errno)); 917 fprintf(stderr, "Couldn't set window size: %s\n", strerror(errno));
918} 918}