whitespace fixes
authorDenis Vlasenko <vda.linux@googlemail.com>
Sun, 17 Feb 2008 15:14:04 +0000 (15:14 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Sun, 17 Feb 2008 15:14:04 +0000 (15:14 -0000)
libbb/getopt32.c
miscutils/microcom.c
shell/ash.c

index 46807a3b6249fdb3f0488179a7501ec9909aa84e..f48ccaa6a476749627693c001722df8580f98cad 100644 (file)
@@ -505,7 +505,7 @@ getopt32(char **argv, const char *applet_opts, ...)
         * affairs is that BSD-derived versions of getopt() misbehave if
         * optind is set to 0 in order to reset getopt(), and glibc's getopt()
         * will core dump if optind is set 1 in order to reset getopt().
-        * 
+        *
         * More modern versions of BSD require that optreset be set to 1 in
         * order to reset getopt().   Sigh.  Standards, anyone?
         */
index 2857a1b1b1c2598eeafc4e8d58d7609f4ff4e75b..ea48291aed3343e8b6dadeb357dea596417c9784 100644 (file)
@@ -19,7 +19,7 @@ static void signal_handler(int signo)
 
 // set raw tty mode
 static void xget1(int fd, struct termios *t, struct termios *oldt)
-{ 
+{
        tcgetattr(fd, oldt);
        *t = *oldt;
        cfmakeraw(t);
index 4f9caa43496caf001048adf5cfa999cb83b361a5..668953c0a85dd54b1780c53d1db07eff4390d599 100644 (file)
@@ -9115,7 +9115,7 @@ setparam(char **argv)
  * For a non-interactive shell, an error condition encountered
  * by a special built-in ... shall cause the shell to write a diagnostic message
  * to standard error and exit as shown in the following table:
- * Error                                           Special Built-In 
+ * Error                                           Special Built-In
  * ...
  * Utility syntax error (option or operand error)  Shall exit
  * ...