whitespace fixes
authorDenys Vlasenko <vda.linux@googlemail.com>
Thu, 12 Oct 2017 17:40:47 +0000 (19:40 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Thu, 12 Oct 2017 17:40:47 +0000 (19:40 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
shell/ash.c

index f60daefc15d2e0e11498acf4c057d23f4c8d2d94..88e607f08148c6238346befd6ce2caf43b9bb7f3 100644 (file)
@@ -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);