Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEgor Duda <deo@logos-m.ru>2001-10-29 23:03:06 +0300
committerEgor Duda <deo@logos-m.ru>2001-10-29 23:03:06 +0300
commit3fbfb55efe38a6f52979a25b02c81a0acfee6dc9 (patch)
tree9403800a14cc450589fa2255b0daf209a4f8c748 /winsup/testsuite/winsup.api/ltp
parentbd65358b341b77c09893bf3c9f37d8f429d66e39 (diff)
* winsup.api/ltp/stat03.c: Supress compiler warning.
Diffstat (limited to 'winsup/testsuite/winsup.api/ltp')
-rw-r--r--winsup/testsuite/winsup.api/ltp/stat03.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/winsup/testsuite/winsup.api/ltp/stat03.c b/winsup/testsuite/winsup.api/ltp/stat03.c
index a1a94279f..2d04ec4fc 100644
--- a/winsup/testsuite/winsup.api/ltp/stat03.c
+++ b/winsup/testsuite/winsup.api/ltp/stat03.c
@@ -187,14 +187,14 @@ main(int ac, char **av)
"stat() fails, %s, errno:%d",
test_desc, TEST_ERRNO);
} else {
- tst_resm(TFAIL, "stat() fails, %s,
- errno:%d, expected errno:%d",
+ tst_resm(TFAIL, "stat() fails, %s,"
+ " errno:%d, expected errno:%d",
test_desc, TEST_ERRNO,
Test_cases[ind].exp_errno);
}
} else {
- tst_resm(TFAIL, "stat(2) returned %d,
- expected -1, errno:%d", TEST_RETURN,
+ tst_resm(TFAIL, "stat(2) returned %d,"
+ " expected -1, errno:%d", TEST_RETURN,
Test_cases[ind].exp_errno);
}
} /* End of TEST CASE LOOPING. */