Actually returning ret might be good.
authorRob Landley <rob@landley.net>
Mon, 5 Sep 2005 05:36:15 +0000 (05:36 -0000)
committerRob Landley <rob@landley.net>
Mon, 5 Sep 2005 05:36:15 +0000 (05:36 -0000)
libbb/get_terminal_width_height.c

index ce3e83c..01136d4 100644 (file)
@@ -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 */