Whamcloud - gitweb
LU-15014 obdclass: lu_ref_add() called in atomic context
[fs/lustre-release.git] / lustre / tests / tchmod.c
index 2d2c320..b0bbc65 100644 (file)
@@ -25,7 +25,6 @@
  */
 /*
  * This file is part of Lustre, http://www.lustre.org/
- * Lustre is a trademark of Sun Microsystems, Inc.
  */
 
 #include <sys/types.h>
 
 int main(int argc, char **argv)
 {
-        mode_t mode;
+       mode_t mode;
 
-        if (argc != 3) { 
-                printf("usage: %s mode name\n", argv[0]);
-                return 1;
-        }
+       if (argc != 3) {
+               printf("usage: %s mode name\n", argv[0]);
+               return 1;
+       }
 
-        mode = strtoul(argv[1], NULL, 8); 
-        return chmod(argv[2], mode) ? errno : 0;
+       mode = strtoul(argv[1], NULL, 8);
+       return chmod(argv[2], mode) ? errno : 0;
 }