From cc1669bcde1fc773accaafcee4279a32bfaffd37 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 5 Sep 2005 05:36:15 +0000 Subject: [PATCH] Actually returning ret might be good. --- libbb/get_terminal_width_height.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libbb/get_terminal_width_height.c b/libbb/get_terminal_width_height.c index ce3e83c0c..01136d414 100644 --- a/libbb/get_terminal_width_height.c +++ b/libbb/get_terminal_width_height.c @@ -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 (height) *height = (int) win.ws_row; if (width) *width = (int) win.ws_col; + + return ret; } /* END CODE */