X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Ftests%2Ftchmod.c;h=b0bbc659f26a70795050a8e197d87ee2d1960417;hb=0442eb6205344c5c907c63df77ad09bc0a6f89a6;hp=2d2c3200fbcda42d247623bfc2c78ed53f694d90;hpb=72057a3af19ee02d9a686bd7e7d074917e381310;p=fs%2Flustre-release.git diff --git a/lustre/tests/tchmod.c b/lustre/tests/tchmod.c index 2d2c320..b0bbc65 100644 --- a/lustre/tests/tchmod.c +++ b/lustre/tests/tchmod.c @@ -25,7 +25,6 @@ */ /* * This file is part of Lustre, http://www.lustre.org/ - * Lustre is a trademark of Sun Microsystems, Inc. */ #include @@ -36,13 +35,13 @@ 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; }