- add a few basic tests for pidof(8)
[oweals/busybox.git] / libbb / get_terminal_width_height.c
index ce3e83c0c392b44ec6eff9678cd3a6b595987b76..01136d414dff83c17cd204d31b0ded85267bb469 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 */