remove trailing whitespace
authorDenys Vlasenko <vda.linux@googlemail.com>
Wed, 15 Jul 2009 18:02:19 +0000 (20:02 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Wed, 15 Jul 2009 18:02:19 +0000 (20:02 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
archival/lzo1x_9x.c
archival/lzop.c
libbb/lineedit.c
networking/hostname.c
networking/udhcp/packet.c
shell/hush.c

index d30e2e7d1f8b322616645946a32751b36bd47232..f2d4fac1bf390d6ae7137d7a8c54e51679fdc575 100644 (file)
@@ -304,7 +304,7 @@ static void swd_search(lzo_swd_p s, unsigned node, unsigned cnt)
                    p2[1] == p1[1]) {
                        unsigned i;
                        assert(lzo_memcmp(bp,&b[node],3) == 0);
-                               
+
                        p1 += 2; p2 += 2;
                        do {} while (++p1 < px && *p1 == *++p2);
                        i = p1-bp;
index a30d5e78b4d224c32bf34f7bb08afe111d2107e5..b4757e86d13c30337324f3088ae2642503a2ef0b 100644 (file)
@@ -856,7 +856,7 @@ static const unsigned char lzop_magic[9] = {
 /* This coding is derived from Alexander Lehmann's pngcheck code. */
 static void check_magic(void)
 {
-       unsigned char magic[sizeof(lzop_magic)];        
+       unsigned char magic[sizeof(lzop_magic)];
        xread(0, magic, sizeof(magic));
        if (memcmp(magic, lzop_magic, sizeof(lzop_magic)) != 0)
                bb_error_msg_and_die("bad magic number");
@@ -948,7 +948,7 @@ static int read_header(header_t *h)
        /* skip extra field [not used yet] */
        if (h->flags & F_H_EXTRA_FIELD) {
                uint32_t k;
-               
+
                /* note: the checksum also covers the length */
                init_chksum(&G.chksum_in);
                h->extra_field_len = f_read32();
@@ -1033,7 +1033,7 @@ static smallint do_lzo_compress(void)
 static smallint do_lzo_decompress(void)
 {
        header_t header;
-       
+
        check_magic();
        p_header(&header);
        return lzo_decompress(&header);
index 5ebea70d615f196f52674dfca6a0ed920ac15fbd..a99f9b5fdfaae4f32929d8c4875edb02a83f1ac6 100644 (file)
@@ -233,7 +233,7 @@ static size_t load_string(const char *src, int maxsize)
        safe_strncpy(command_ps, src, maxsize);
        return strlen(command_ps);
 }
-# if ENABLE_FEATURE_TAB_COMPLETION 
+# if ENABLE_FEATURE_TAB_COMPLETION
 static void save_string(char *dst, int maxsize)
 {
        safe_strncpy(dst, command_ps, maxsize);
index 7a120fa2cd4eb391f27274bcecc45d74e66580eb..579eff7959874c9f1dfdd684affbd918dca98789 100644 (file)
@@ -31,7 +31,7 @@ static void do_sethostname(char *s, int isfile)
 
 /* Manpage circa 2009:
  *
- * hostname [-v] [-a] [--alias] [-d] [--domain] [-f] [--fqdn] [--long] 
+ * hostname [-v] [-a] [--alias] [-d] [--domain] [-f] [--fqdn] [--long]
  *      [-i] [--ip-address] [-s] [--short] [-y] [--yp] [--nis]
  *
  * hostname [-v] [-F filename] [--file filename] / [hostname]
index 4c72d7a6300a5ce68fd8b34552279e0183245976..90410cbc06ff19500aeb55634b19b78d81f7f7f4 100644 (file)
@@ -53,7 +53,7 @@ void FAST_FUNC udhcp_dump_packet(struct dhcp_packet *packet)
                //" secs %x"
                //" flags %x"
                " ciaddr %x"
-               " yiaddr %x" 
+               " yiaddr %x"
                " siaddr %x"
                " giaddr %x"
                //" chaddr %s"
index fe05e47156d0abc7d99d73a4a296c776d1dd0c05..d7b479d645956e8c718fa4a1084c593f6c029711 100644 (file)
@@ -7207,7 +7207,7 @@ static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
 
        if (!G.memleak_value)
                G.memleak_value = l;
-       
+
        l -= G.memleak_value;
        if ((long)l < 0)
                l = 0;