aboutsummaryrefslogtreecommitdiff
path: root/coreutils/stty.c
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-09-15 03:24:32 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-09-15 03:24:32 +0000
commitbcddf58224a08be23aba6cbb66207cf89a19acc9 (patch)
treeba71a4e9067821f29abef50fc71cfc64a180f04a /coreutils/stty.c
parent1f43cf7fc3562db5698a2a2e7146b8350d9a461f (diff)
downloadbusybox-w32-bcddf58224a08be23aba6cbb66207cf89a19acc9.tar.gz
busybox-w32-bcddf58224a08be23aba6cbb66207cf89a19acc9.tar.bz2
busybox-w32-bcddf58224a08be23aba6cbb66207cf89a19acc9.zip
Add a missing brace, patch by Hideki IWAMOTO
git-svn-id: svn://busybox.net/trunk/busybox@9257 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r--coreutils/stty.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/coreutils/stty.c b/coreutils/stty.c
index bd3a36911..d62068668 100644
--- a/coreutils/stty.c
+++ b/coreutils/stty.c
@@ -980,6 +980,7 @@ set_window_size(int rows, int cols, int fd)
980 if ((ioctl(fd, TIOCSWINSZ, (char *) &win) != 0) 980 if ((ioctl(fd, TIOCSWINSZ, (char *) &win) != 0)
981 || (ioctl(fd, TIOCSSIZE, (char *) &ttysz) != 0)) { 981 || (ioctl(fd, TIOCSSIZE, (char *) &ttysz) != 0)) {
982 perror_on_device("%s"); 982 perror_on_device("%s");
983 }
983 return; 984 return;
984 } 985 }
985# endif 986# endif