diff options
Diffstat (limited to 'tests/bugs/nfs')
| -rw-r--r-- | tests/bugs/nfs/bug-1210338.c | 27 | 
1 files changed, 13 insertions, 14 deletions
diff --git a/tests/bugs/nfs/bug-1210338.c b/tests/bugs/nfs/bug-1210338.c index 7a17b9d68ce..d4099244176 100644 --- a/tests/bugs/nfs/bug-1210338.c +++ b/tests/bugs/nfs/bug-1210338.c @@ -7,26 +7,25 @@  #include <fcntl.h>  #include <sys/stat.h> -  int -main (int argc, char *argv[]) +main(int argc, char *argv[])  { -        int   ret  = -1; -        int   fd   = -1; +    int ret = -1; +    int fd = -1; -        fd = open (argv[1], O_CREAT|O_EXCL, 0644); +    fd = open(argv[1], O_CREAT | O_EXCL, 0644); -        if (fd == -1) { -                fprintf (stderr, "creation of the file %s failed (%s)\n", argv[1], -                         strerror (errno)); -                goto out; -        } +    if (fd == -1) { +        fprintf(stderr, "creation of the file %s failed (%s)\n", argv[1], +                strerror(errno)); +        goto out; +    } -        ret = 0; +    ret = 0;  out: -        if (fd > 0) -                close (fd); +    if (fd > 0) +        close(fd); -        return ret; +    return ret;  }  | 
