diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-10-28 14:07:44 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-10-28 14:07:44 +0200 |
commit | 73d249e704cfdf8632c120599c1ddfeceb81dd32 (patch) | |
tree | 713c5a51c3e5d81e4d979c7ad8a9809849663afd | |
parent | 328f27fe447761f355104e7f524dc1115f16ca44 (diff) | |
download | busybox-w32-73d249e704cfdf8632c120599c1ddfeceb81dd32.tar.gz busybox-w32-73d249e704cfdf8632c120599c1ddfeceb81dd32.tar.bz2 busybox-w32-73d249e704cfdf8632c120599c1ddfeceb81dd32.zip |
whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | coreutils/pwd.c | 2 | ||||
-rw-r--r-- | libbb/uuencode.c | 2 | ||||
-rw-r--r-- | miscutils/runlevel.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/pwd.c b/coreutils/pwd.c index 9455975e7..bb3ad04fc 100644 --- a/coreutils/pwd.c +++ b/coreutils/pwd.c | |||
@@ -43,7 +43,7 @@ static int logical_getcwd(void) | |||
43 | if (*p == '.') | 43 | if (*p == '.') |
44 | p++; /* we found "/.." */ | 44 | p++; /* we found "/.." */ |
45 | if (*p == '\0' || *p == '/') | 45 | if (*p == '\0' || *p == '/') |
46 | return 0; /* "/./" or "/../" component: bad */ | 46 | return 0; /* "/./" or "/../" component: bad */ |
47 | } | 47 | } |
48 | 48 | ||
49 | if (stat(wd, &st1) != 0) | 49 | if (stat(wd, &st1) != 0) |
diff --git a/libbb/uuencode.c b/libbb/uuencode.c index 23e2123bc..46ca79654 100644 --- a/libbb/uuencode.c +++ b/libbb/uuencode.c | |||
@@ -203,7 +203,7 @@ void FAST_FUNC read_base64(FILE *src_stream, FILE *dst_stream, int flags) | |||
203 | out_tail = out_buf; | 203 | out_tail = out_buf; |
204 | in_tail = decode_base64(&out_tail, in_buf); | 204 | in_tail = decode_base64(&out_tail, in_buf); |
205 | 205 | ||
206 | fwrite(out_buf, (out_tail - out_buf), 1, dst_stream); | 206 | fwrite(out_buf, (out_tail - out_buf), 1, dst_stream); |
207 | 207 | ||
208 | if (term_seen) { | 208 | if (term_seen) { |
209 | /* Did we consume ALL characters? */ | 209 | /* Did we consume ALL characters? */ |
diff --git a/miscutils/runlevel.c b/miscutils/runlevel.c index 9d38b791f..76231df22 100644 --- a/miscutils/runlevel.c +++ b/miscutils/runlevel.c | |||
@@ -11,7 +11,7 @@ | |||
11 | * | 11 | * |
12 | * initially busyboxified by Bernhard Reutner-Fischer | 12 | * initially busyboxified by Bernhard Reutner-Fischer |
13 | */ | 13 | */ |
14 | 14 | ||
15 | //usage:#define runlevel_trivial_usage | 15 | //usage:#define runlevel_trivial_usage |
16 | //usage: "[FILE]" | 16 | //usage: "[FILE]" |
17 | //usage:#define runlevel_full_usage "\n\n" | 17 | //usage:#define runlevel_full_usage "\n\n" |