From f588f70b91f7d4b36bf7c3b7010d2b583b574c12 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Sat, 22 Sep 2007 20:35:32 +0000 Subject: - remove some trailing whitespace --- util-linux/microcom.c | 5 +++-- 1 file 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 @@ -/* +/* vi: set sw=4 ts=4: */ +/* * bare bones 'talk to modem' program - similar to 'cu -l $device' * inspired by mgetty's microcom * @@ -107,7 +108,7 @@ int microcom_main(int argc, char **argv) while (-1 == poll(pfd, 2, -1) && EINTR == errno) continue; for (i = 0; i < 2; ++i) { - if (pfd[i].revents & POLLIN) { + if (pfd[i].revents & POLLIN) { len = read(pfd[i].fd, bb_common_bufsiz1, COMMON_BUFSIZE); if (len > 0) { if (!i && 24 == bb_common_bufsiz1[0]) -- cgit v1.2.3