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 /coreutils/pwd.c | |
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>
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 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) |