aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-04-01 19:48:05 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2009-04-01 19:48:05 +0000
commit551ffdccea39a9223ad451954db40fd7a6e20e79 (patch)
tree0c5761879447442b166d3e7f4f414c1806a97852 /shell
parentbd79c3d337304a96dcce4ae4f97b36143919af10 (diff)
downloadbusybox-551ffdccea39a9223ad451954db40fd7a6e20e79.tar.gz
more of pointless whitespace fixes
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index b63a243c9..4f7f38f6d 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -12619,7 +12619,7 @@ readcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
if (c == '\n')
break;
/* $IFS splitting */
-/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_06_05 */
+/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_06_05 */
is_ifs = strchr(ifs, c);
if (startword && is_ifs) {
if (isspace(c))