diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-13 11:09:30 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-13 11:09:30 +0000 |
commit | 319f8ebef8a9e48cb74b220d4585552928549266 (patch) | |
tree | a6f292129a04b9eba6d2a2aef353e49e8b5a14e0 /miscutils | |
parent | f5635f4d327c7f4ce34026c64548585dd7b59ffc (diff) | |
download | busybox-w32-319f8ebef8a9e48cb74b220d4585552928549266.tar.gz busybox-w32-319f8ebef8a9e48cb74b220d4585552928549266.tar.bz2 busybox-w32-319f8ebef8a9e48cb74b220d4585552928549266.zip |
httpd: round down sendfile byte count to 64k
*: style fixes
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/ttysize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/ttysize.c b/miscutils/ttysize.c index 51d4ec76f..5a3f5dcd4 100644 --- a/miscutils/ttysize.c +++ b/miscutils/ttysize.c | |||
@@ -16,7 +16,7 @@ int ttysize_main(int argc, char **argv) | |||
16 | { | 16 | { |
17 | unsigned w,h; | 17 | unsigned w,h; |
18 | struct winsize wsz; | 18 | struct winsize wsz; |
19 | 19 | ||
20 | w = 80; | 20 | w = 80; |
21 | h = 24; | 21 | h = 24; |
22 | if (!ioctl(0, TIOCGWINSZ, &wsz)) { | 22 | if (!ioctl(0, TIOCGWINSZ, &wsz)) { |