whitespace fixes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2011-10-28 14:07:44 +02:00
parent 328f27fe44
commit 73d249e704
3 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ static int logical_getcwd(void)
if (*p == '.')
p++; /* we found "/.." */
if (*p == '\0' || *p == '/')
return 0; /* "/./" or "/../" component: bad */
return 0; /* "/./" or "/../" component: bad */
}
if (stat(wd, &st1) != 0)

View File

@ -203,7 +203,7 @@ void FAST_FUNC read_base64(FILE *src_stream, FILE *dst_stream, int flags)
out_tail = out_buf;
in_tail = decode_base64(&out_tail, in_buf);
fwrite(out_buf, (out_tail - out_buf), 1, dst_stream);
fwrite(out_buf, (out_tail - out_buf), 1, dst_stream);
if (term_seen) {
/* Did we consume ALL characters? */

View File

@ -11,7 +11,7 @@
*
* initially busyboxified by Bernhard Reutner-Fischer
*/
//usage:#define runlevel_trivial_usage
//usage: "[FILE]"
//usage:#define runlevel_full_usage "\n\n"