projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f15dfc5
)
Add a missing brace, patch by Hideki IWAMOTO
author
Glenn L McGrath
<bug1@ihug.co.nz>
Wed, 15 Sep 2004 03:24:32 +0000
(
03:24
-0000)
committer
Glenn L McGrath
<bug1@ihug.co.nz>
Wed, 15 Sep 2004 03:24:32 +0000
(
03:24
-0000)
coreutils/stty.c
patch
|
blob
|
history
diff --git
a/coreutils/stty.c
b/coreutils/stty.c
index bd3a36911ec84d409f56a98fb99619e74bbb40d8..d62068668b6c9699dc4694e6c63447d7232c1a85 100644
(file)
--- 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