diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2004-09-15 03:24:32 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2004-09-15 03:24:32 +0000 |
commit | ca1c1afadc06c206455fbee35c73a3099de550d0 (patch) | |
tree | ba71a4e9067821f29abef50fc71cfc64a180f04a | |
parent | f15dfc557048ca28c8b71ecbcfb9b8f229f2e2e0 (diff) | |
download | busybox-ca1c1afadc06c206455fbee35c73a3099de550d0.tar.gz |
Add a missing brace, patch by Hideki IWAMOTO
-rw-r--r-- | coreutils/stty.c | 1 |
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) if ((ioctl(fd, TIOCSWINSZ, (char *) &win) != 0) || (ioctl(fd, TIOCSSIZE, (char *) &ttysz) != 0)) { perror_on_device("%s"); + } return; } # endif |