aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-02-17 15:14:04 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-02-17 15:14:04 +0000
commit56244736ec7d0a3c338f542204aae83fb0200346 (patch)
tree5b228e3fe0009a2464914c26d0685fc59dbe3509
parent542963685c3e25ae4cc7ffa3a80d5f1129e6a0d7 (diff)
downloadbusybox-w32-56244736ec7d0a3c338f542204aae83fb0200346.tar.gz
busybox-w32-56244736ec7d0a3c338f542204aae83fb0200346.tar.bz2
busybox-w32-56244736ec7d0a3c338f542204aae83fb0200346.zip
whitespace fixes
-rw-r--r--libbb/getopt32.c2
-rw-r--r--miscutils/microcom.c2
-rw-r--r--shell/ash.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/libbb/getopt32.c b/libbb/getopt32.c
index 46807a3b6..f48ccaa6a 100644
--- a/libbb/getopt32.c
+++ b/libbb/getopt32.c
@@ -505,7 +505,7 @@ getopt32(char **argv, const char *applet_opts, ...)
505 * affairs is that BSD-derived versions of getopt() misbehave if 505 * affairs is that BSD-derived versions of getopt() misbehave if
506 * optind is set to 0 in order to reset getopt(), and glibc's getopt() 506 * optind is set to 0 in order to reset getopt(), and glibc's getopt()
507 * will core dump if optind is set 1 in order to reset getopt(). 507 * will core dump if optind is set 1 in order to reset getopt().
508 * 508 *
509 * More modern versions of BSD require that optreset be set to 1 in 509 * More modern versions of BSD require that optreset be set to 1 in
510 * order to reset getopt(). Sigh. Standards, anyone? 510 * order to reset getopt(). Sigh. Standards, anyone?
511 */ 511 */
diff --git a/miscutils/microcom.c b/miscutils/microcom.c
index 2857a1b1b..ea48291ae 100644
--- a/miscutils/microcom.c
+++ b/miscutils/microcom.c
@@ -19,7 +19,7 @@ static void signal_handler(int signo)
19 19
20// set raw tty mode 20// set raw tty mode
21static void xget1(int fd, struct termios *t, struct termios *oldt) 21static void xget1(int fd, struct termios *t, struct termios *oldt)
22{ 22{
23 tcgetattr(fd, oldt); 23 tcgetattr(fd, oldt);
24 *t = *oldt; 24 *t = *oldt;
25 cfmakeraw(t); 25 cfmakeraw(t);
diff --git a/shell/ash.c b/shell/ash.c
index 4f9caa434..668953c0a 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -9115,7 +9115,7 @@ setparam(char **argv)
9115 * For a non-interactive shell, an error condition encountered 9115 * For a non-interactive shell, an error condition encountered
9116 * by a special built-in ... shall cause the shell to write a diagnostic message 9116 * by a special built-in ... shall cause the shell to write a diagnostic message
9117 * to standard error and exit as shown in the following table: 9117 * to standard error and exit as shown in the following table:
9118 * Error Special Built-In 9118 * Error Special Built-In
9119 * ... 9119 * ...
9120 * Utility syntax error (option or operand error) Shall exit 9120 * Utility syntax error (option or operand error) Shall exit
9121 * ... 9121 * ...