diff options
author | Denys Vlasenko | 2011-10-28 14:07:44 +0200 |
---|---|---|
committer | Denys Vlasenko | 2011-10-28 14:07:44 +0200 |
commit | 73d249e704cfdf8632c120599c1ddfeceb81dd32 (patch) | |
tree | 713c5a51c3e5d81e4d979c7ad8a9809849663afd /coreutils/pwd.c | |
parent | 328f27fe447761f355104e7f524dc1115f16ca44 (diff) | |
download | busybox-73d249e704cfdf8632c120599c1ddfeceb81dd32.zip busybox-73d249e704cfdf8632c120599c1ddfeceb81dd32.tar.gz |
whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/pwd.c')
-rw-r--r-- | coreutils/pwd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/pwd.c b/coreutils/pwd.c index 9455975..bb3ad04 100644 --- a/coreutils/pwd.c +++ b/coreutils/pwd.c @@ -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) |