aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-20 21:33:50 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-20 21:33:50 +0000
commit9729696c5cb03cde296e7e9a327ff09ce31e1f42 (patch)
treed522d6eb89df384b6fe56b100028b4b8af9dda35 /libbb
parent68518bebf9ae94b51427fcf53c34beed69509b6c (diff)
downloadbusybox-w32-9729696c5cb03cde296e7e9a327ff09ce31e1f42.tar.gz
busybox-w32-9729696c5cb03cde296e7e9a327ff09ce31e1f42.tar.bz2
busybox-w32-9729696c5cb03cde296e7e9a327ff09ce31e1f42.zip
- get_terminal_width_height does not and should never write to fd. Cosmetic Precaution
git-svn-id: svn://busybox.net/trunk/busybox@17421 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r--libbb/xfuncs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c
index dc160bf5c..240ac5d3d 100644
--- a/libbb/xfuncs.c
+++ b/libbb/xfuncs.c
@@ -572,7 +572,7 @@ void xstat(char *name, struct stat *stat_buf)
572 572
573/* It is perfectly ok to pass in a NULL for either width or for 573/* It is perfectly ok to pass in a NULL for either width or for
574 * height, in which case that value will not be set. */ 574 * height, in which case that value will not be set. */
575int get_terminal_width_height(int fd, int *width, int *height) 575int get_terminal_width_height(const int fd, int *width, int *height)
576{ 576{
577 struct winsize win = { 0, 0, 0, 0 }; 577 struct winsize win = { 0, 0, 0, 0 };
578 int ret = ioctl(fd, TIOCGWINSZ, &win); 578 int ret = ioctl(fd, TIOCGWINSZ, &win);