diff options
Diffstat (limited to 'tests/bugs/access-control/bug-1387241.c')
| -rw-r--r-- | tests/bugs/access-control/bug-1387241.c | 17 | 
1 files changed, 9 insertions, 8 deletions
diff --git a/tests/bugs/access-control/bug-1387241.c b/tests/bugs/access-control/bug-1387241.c index 04e0d6ea11f..e2e843a2fda 100644 --- a/tests/bugs/access-control/bug-1387241.c +++ b/tests/bugs/access-control/bug-1387241.c @@ -3,15 +3,16 @@  #include <unistd.h>  #include <fcntl.h> -int main(int argc, char *argv[]) +int +main(int argc, char *argv[])  { -        int ret = EXIT_FAILURE; -        int fd = open(argv[1], O_RDONLY|O_TRUNC); +    int ret = EXIT_FAILURE; +    int fd = open(argv[1], O_RDONLY | O_TRUNC); -        if (fd) { -                ret = EXIT_SUCCESS; -                close(fd); -        } +    if (fd) { +        ret = EXIT_SUCCESS; +        close(fd); +    } -        return ret; +    return ret;  }  | 
