mirror of
https://github.com/sheumann/hush.git
synced 2024-12-22 14:30:31 +00:00
Actually returning ret might be good.
This commit is contained in:
parent
8a7a678b03
commit
cc1669bcde
@ -38,6 +38,8 @@ int get_terminal_width_height(int fd, int *width, int *height)
|
|||||||
if (win.ws_col <= 1) win.ws_col = 80;
|
if (win.ws_col <= 1) win.ws_col = 80;
|
||||||
if (height) *height = (int) win.ws_row;
|
if (height) *height = (int) win.ws_row;
|
||||||
if (width) *width = (int) win.ws_col;
|
if (width) *width = (int) win.ws_col;
|
||||||
|
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* END CODE */
|
/* END CODE */
|
||||||
|
Loading…
Reference in New Issue
Block a user