diff options
Diffstat (limited to 'util-linux/more.c')
-rw-r--r-- | util-linux/more.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/more.c b/util-linux/more.c index 7d0ddb8ec..7fbca2317 100644 --- a/util-linux/more.c +++ b/util-linux/more.c @@ -122,7 +122,7 @@ extern int more_main(int argc, char **argv) stty(fileno(cin), &new_settings); #ifdef BB_FEATURE_AUTOWIDTH - ioctl(STDOUT_FILENO, TIOCGWINSZ, &win); + ioctl(fileno(stdout), TIOCGWINSZ, &win); if (win.ws_row > 4) terminal_height = win.ws_row - 2; if (win.ws_col > 0) |