mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
TIOCSWINSZ: fix alignment and spelling
This commit is contained in:
parent
7fb0c4b342
commit
2b3f3711fc
1 changed files with 4 additions and 4 deletions
8
main.c
8
main.c
|
|
@ -447,13 +447,13 @@ resize(struct context *c, int width, int height)
|
|||
setenv("COLUMNS", cols_s, 1);
|
||||
setenv("LINES", rows_s, 1);
|
||||
|
||||
/* SIignal TIOCSWINSZ */
|
||||
/* Signal TIOCSWINSZ */
|
||||
if (ioctl(c->term.ptmx, TIOCSWINSZ,
|
||||
&(struct winsize){
|
||||
.ws_row = c->term.grid.rows,
|
||||
.ws_col = c->term.grid.cols,
|
||||
.ws_xpixel = c->width,
|
||||
.ws_ypixel = c->height}) == -1)
|
||||
.ws_col = c->term.grid.cols,
|
||||
.ws_xpixel = c->width,
|
||||
.ws_ypixel = c->height}) == -1)
|
||||
{
|
||||
LOG_ERRNO("TIOCSWINSZ");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue