reindent-20030715
[openafs.git] / src / sys / idec.c
index 24698ee..583285b 100644 (file)
@@ -10,7 +10,8 @@
 #include <afsconfig.h>
 #include <afs/param.h>
 
-RCSID("$Header$");
+RCSID
+    ("$Header$");
 
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -21,14 +22,14 @@ RCSID("$Header$");
 #include <sys/mknod.h>
 #endif
 
-main(argc,argv)
-char **argv;
+main(argc, argv)
+     char **argv;
 {
-    
+
     int fd;
     struct stat status;
 
-    if ( argc < 3 ) {
+    if (argc < 3) {
        printf(" Usage is %s <partition> <inode>\n", argv[0]);
        exit(0);
     }
@@ -37,8 +38,8 @@ char **argv;
        perror("stat");
        exit(1);
     }
-    printf("About to idec(dev=(%d), inode=%d)\n",
-       status.st_dev, atoi(argv[2]));
+    printf("About to idec(dev=(%d), inode=%d)\n", status.st_dev,
+          atoi(argv[2]));
     fflush(stdout);
     fd = IDEC(status.st_dev, atoi(argv[2]), 17);
     if (fd == -1) {