aboutsummaryrefslogtreecommitdiff
path: root/coreutils/pwd.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2011-10-28 14:07:44 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2011-10-28 14:07:44 +0200
commit73d249e704cfdf8632c120599c1ddfeceb81dd32 (patch)
tree713c5a51c3e5d81e4d979c7ad8a9809849663afd /coreutils/pwd.c
parent328f27fe447761f355104e7f524dc1115f16ca44 (diff)
downloadbusybox-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.c2
1 files changed, 1 insertions, 1 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)
if (*p == '.')
p++; /* we found "/.." */
if (*p == '\0' || *p == '/')
- return 0; /* "/./" or "/../" component: bad */
+ return 0; /* "/./" or "/../" component: bad */
}
if (stat(wd, &st1) != 0)