diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-10-12 19:40:47 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-10-12 19:40:47 +0200 |
commit | 14c85eb7db918daa1914a0e60081b1d3ca12ae04 (patch) | |
tree | 9d095bf2826274138e96a7eb8e68ac054dbcea6c /shell | |
parent | 3c183a8758e83f6809f77355e019ab98e5fd596b (diff) |
whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/ash.c b/shell/ash.c index f60daefc1..88e607f08 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -12742,7 +12742,7 @@ evalstring(char *s, int flags) exception_handler = savehandler; if (ex) - longjmp(exception_handler->loc, ex); + longjmp(exception_handler->loc, ex); return status; } @@ -13556,8 +13556,8 @@ umaskcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) } } else { char *modestr = *argptr; - /* numeric umasks are taken as-is */ - /* symbolic umasks are inverted: "umask a=rx" calls umask(222) */ + /* numeric umasks are taken as-is */ + /* symbolic umasks are inverted: "umask a=rx" calls umask(222) */ if (!isdigit(modestr[0])) mask ^= 0777; mask = bb_parse_mode(modestr, mask); |