whitespace fixes
authorDenis Vlasenko <vda.linux@googlemail.com>
Mon, 7 Jan 2008 19:06:47 +0000 (19:06 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Mon, 7 Jan 2008 19:06:47 +0000 (19:06 -0000)
coreutils/tac.c
init/Config.in
networking/netstat.c

index 6aa0528e0494c98bf1db4f612b4742e12b28e0ee..b1b47302f8e912ca48a03d3d5e2a65a10f5a99de 100644 (file)
@@ -28,7 +28,7 @@ int tac_main(int argc, char **argv)
        char *line;
        llist_t *list = NULL;
        int retval = EXIT_SUCCESS;
-       
+
        argv++;
        if (!*argv)
                *--argv = (char *)"-";
@@ -48,7 +48,7 @@ int tac_main(int argc, char **argv)
                errno = 0;
                /* FIXME: NUL bytes are mishandled. */
                while ((line = xmalloc_fgets(f)) != NULL)
-                       llist_add_to(&list, line);      
+                       llist_add_to(&list, line);
 
                /* xmalloc_fgets uses getc and returns NULL on error or EOF. */
                /* It sets errno to ENOENT on EOF, but fopen_or_warn_stdin would */
@@ -63,6 +63,6 @@ int tac_main(int argc, char **argv)
                printf("%s", list->data);
                list = list->link;
        }
-       
+
        return retval;
 }
index efc8beaf9e13bb3395d726fcf257c6dd532e2c2d..4c5610246721aac04a1b627daf234939604b7dd3 100644 (file)
@@ -32,8 +32,8 @@ config FEATURE_KILL_REMOVED
        default y
        depends on FEATURE_USE_INITTAB
        help
-         When respawn entries are removed from inittab and a SIGHUP is 
-         sent to init, this feature will kill the processes that have 
+         When respawn entries are removed from inittab and a SIGHUP is
+         sent to init, this feature will kill the processes that have
          been removed.
 
 config FEATURE_KILL_DELAY
index 348abd8ad3e72843b514b0cfc8a3d67dd25ae4a0..399ff9b42fe4710f20b4a097b50aa573ae6a7d96 100644 (file)
@@ -353,7 +353,7 @@ static int unix_do_one(int nr, char *line)
                return 0; /* skip header */
 
        /* 2.6.15 may report lines like "... @/tmp/fam-user-^@^@^@^@^@^@^@..."
-        * Other users report long lines filled by NUL bytes. 
+        * Other users report long lines filled by NUL bytes.
         * (those ^@ are NUL bytes too). We see them as empty lines. */
        if (!line[0])
                return 0;