mkdir: style fix
authorDenis Vlasenko <vda.linux@googlemail.com>
Sun, 19 Nov 2006 13:53:50 +0000 (13:53 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Sun, 19 Nov 2006 13:53:50 +0000 (13:53 -0000)
coreutils/mkdir.c

index c4d2676..2cc9c7a 100644 (file)
@@ -29,7 +29,7 @@ static const struct option mkdir_long_options[] = {
 };
 #endif
 
-int mkdir_main (int argc, char **argv)
+int mkdir_main(int argc, char **argv)
 {
        mode_t mode = (mode_t)(-1);
        int status = EXIT_SUCCESS;
@@ -41,13 +41,13 @@ int mkdir_main (int argc, char **argv)
        applet_long_options = mkdir_long_options;
 #endif
        opt = getopt32(argc, argv, "m:p", &smode);
-       if(opt & 1) {
+       if (opt & 1) {
                mode = 0777;
-               if (!bb_parse_mode (smode, &mode)) {
-                       bb_error_msg_and_die ("invalid mode '%s'", smode);
+               if (!bb_parse_mode(smode, &mode)) {
+                       bb_error_msg_and_die("invalid mode '%s'", smode);
                }
        }
-       if(opt & 2)
+       if (opt & 2)
                flags |= FILEUTILS_RECUR;
 
        if (optind == argc) {