* winsup.api/ltp/stat03.c: Supress compiler warning.

This commit is contained in:
Egor Duda 2001-10-29 20:03:06 +00:00
parent bd65358b34
commit 3fbfb55efe
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2001-10-29 Egor Duda <deo@logos-m.ru>
* winsup.api/ltp/stat03.c: Supress compiler warning.
2001-10-29 Egor Duda <deo@logos-m.ru> 2001-10-29 Egor Duda <deo@logos-m.ru>
* winsup.api/signal-into-win32-api.c: Supress compiler warning. * winsup.api/signal-into-win32-api.c: Supress compiler warning.

View File

@ -187,14 +187,14 @@ main(int ac, char **av)
"stat() fails, %s, errno:%d", "stat() fails, %s, errno:%d",
test_desc, TEST_ERRNO); test_desc, TEST_ERRNO);
} else { } else {
tst_resm(TFAIL, "stat() fails, %s, tst_resm(TFAIL, "stat() fails, %s,"
errno:%d, expected errno:%d", " errno:%d, expected errno:%d",
test_desc, TEST_ERRNO, test_desc, TEST_ERRNO,
Test_cases[ind].exp_errno); Test_cases[ind].exp_errno);
} }
} else { } else {
tst_resm(TFAIL, "stat(2) returned %d, tst_resm(TFAIL, "stat(2) returned %d,"
expected -1, errno:%d", TEST_RETURN, " expected -1, errno:%d", TEST_RETURN,
Test_cases[ind].exp_errno); Test_cases[ind].exp_errno);
} }
} /* End of TEST CASE LOOPING. */ } /* End of TEST CASE LOOPING. */