summaryrefslogtreecommitdiffstats
path: root/nsprpub/pr/tests/op_filok.c
diff options
context:
space:
mode:
Diffstat (limited to 'nsprpub/pr/tests/op_filok.c')
-rw-r--r--nsprpub/pr/tests/op_filok.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/nsprpub/pr/tests/op_filok.c b/nsprpub/pr/tests/op_filok.c
index 035765a86..4f8688b7f 100644
--- a/nsprpub/pr/tests/op_filok.c
+++ b/nsprpub/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;
+ }
+ }
+}