mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-22 05:33:45 -04:00
Merge branch 'silence-tiocswinsz-conversion-warning'
This commit is contained in:
commit
0271e377c0
3 changed files with 5 additions and 2 deletions
|
|
@ -66,6 +66,9 @@
|
|||
* XCursor shape in CSD corners when window is tiled.
|
||||
* Error handling when processing keyboard input (maybe
|
||||
https://codeberg.org/dnkl/foot/issues/171).
|
||||
* Compilation error _"overflow in conversion from long 'unsigned int'
|
||||
to 'int' changes value... "_ seen on platforms where the `request`
|
||||
argument in `ioctl(3)` is an `int` (for example: linux/ppc64).
|
||||
|
||||
|
||||
### Security
|
||||
|
|
|
|||
2
render.c
2
render.c
|
|
@ -2206,7 +2206,7 @@ maybe_resize(struct terminal *term, int width, int height, bool force)
|
|||
term->margins.left, term->margins.right, term->margins.top, term->margins.bottom);
|
||||
|
||||
/* Signal TIOCSWINSZ */
|
||||
if (term->ptmx >= 0 && ioctl(term->ptmx, TIOCSWINSZ,
|
||||
if (term->ptmx >= 0 && ioctl(term->ptmx, (unsigned int)TIOCSWINSZ,
|
||||
&(struct winsize){
|
||||
.ws_row = term->rows,
|
||||
.ws_col = term->cols,
|
||||
|
|
|
|||
|
|
@ -928,7 +928,7 @@ term_init(const struct config *conf, struct fdm *fdm, struct reaper *reaper,
|
|||
goto close_fds;
|
||||
}
|
||||
|
||||
if (ioctl(ptmx, TIOCSWINSZ,
|
||||
if (ioctl(ptmx, (unsigned int)TIOCSWINSZ,
|
||||
&(struct winsize){.ws_row = 24, .ws_col = 80}) < 0)
|
||||
{
|
||||
LOG_ERRNO("failed to set initial TIOCSWINSZ");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue