summaryrefslogtreecommitdiff
path: root/pr/tests/op_filok.c
diff options
context:
space:
mode:
Diffstat (limited to 'pr/tests/op_filok.c')
-rw-r--r--pr/tests/op_filok.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/pr/tests/op_filok.c b/pr/tests/op_filok.c
index f8110cc4..4f8688b7 100644
--- a/pr/tests/op_filok.c
+++ b/pr/tests/op_filok.c
@@ -29,20 +29,20 @@ int main(int argc, char **argv)
{
PR_STDIO_INIT();
- t1 = PR_Open(argv[0], PR_RDONLY, 0666);
+ t1 = PR_Open(argv[0], PR_RDONLY, 0666);
- if (t1 == NULL) {
- printf ("error code is %d \n", PR_GetError());
- printf ("File %s should be found\n", argv[0]);
- return 1;
- } else {
- if (PR_Close(t1) == PR_SUCCESS) {
- printf ("Test passed \n");
- return 0;
- } else {
- printf ("cannot close file\n");
- printf ("error code is %d\n", PR_GetError());
- return 1;
- }
- }
+ if (t1 == NULL) {
+ printf ("error code is %d \n", PR_GetError());
+ printf ("File %s should be found\n", argv[0]);
+ return 1;
+ } else {
+ if (PR_Close(t1) == PR_SUCCESS) {
+ printf ("Test passed \n");
+ return 0;
+ } else {
+ printf ("cannot close file\n");
+ printf ("error code is %d\n", PR_GetError());
+ return 1;
+ }
+ }
}