* 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>
* 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",
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. */