aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-09-22 20:35:32 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-09-22 20:35:32 +0000
commitf588f70b91f7d4b36bf7c3b7010d2b583b574c12 (patch)
treed54f04833c5fb9c48b7053bd7e56de19e8e24189
parentf34e821572f272e96ad4573a9c187fff7fad0005 (diff)
downloadbusybox-w32-f588f70b91f7d4b36bf7c3b7010d2b583b574c12.tar.gz
busybox-w32-f588f70b91f7d4b36bf7c3b7010d2b583b574c12.tar.bz2
busybox-w32-f588f70b91f7d4b36bf7c3b7010d2b583b574c12.zip
- remove some trailing whitespace
-rw-r--r--util-linux/microcom.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/util-linux/microcom.c b/util-linux/microcom.c
index 8edc3e912..7a746a311 100644
--- a/util-linux/microcom.c
+++ b/util-linux/microcom.c
@@ -1,4 +1,5 @@
1/* 1/* vi: set sw=4 ts=4: */
2/*
2 * bare bones 'talk to modem' program - similar to 'cu -l $device' 3 * bare bones 'talk to modem' program - similar to 'cu -l $device'
3 * inspired by mgetty's microcom 4 * inspired by mgetty's microcom
4 * 5 *
@@ -107,7 +108,7 @@ int microcom_main(int argc, char **argv)
107 while (-1 == poll(pfd, 2, -1) && EINTR == errno) 108 while (-1 == poll(pfd, 2, -1) && EINTR == errno)
108 continue; 109 continue;
109 for (i = 0; i < 2; ++i) { 110 for (i = 0; i < 2; ++i) {
110 if (pfd[i].revents & POLLIN) { 111 if (pfd[i].revents & POLLIN) {
111 len = read(pfd[i].fd, bb_common_bufsiz1, COMMON_BUFSIZE); 112 len = read(pfd[i].fd, bb_common_bufsiz1, COMMON_BUFSIZE);
112 if (len > 0) { 113 if (len > 0) {
113 if (!i && 24 == bb_common_bufsiz1[0]) 114 if (!i && 24 == bb_common_bufsiz1[0])