(do_test): Add cast to avoid warning.

This commit is contained in:
Ulrich Drepper 2003-04-11 22:59:18 +00:00
parent 9fb0cae85c
commit 6fed7a0f21
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ default detach state wrong: %d, expected %d (PTHREAD_CREATE_JOINABLE)\n",
puts ("1st attr_getguardsize failed");
exit (1);
}
if (g != sysconf (_SC_PAGESIZE))
if (g != (size_t) sysconf (_SC_PAGESIZE))
{
printf ("default guardsize %zu, expected %ld (PAGESIZE)\n",
g, sysconf (_SC_PAGESIZE));

View File

@ -64,7 +64,7 @@ do_test (void)
memset (data, '\0', ps);
/* Write the data to the file. */
if (write (fd, data, ps) != ps)
if (write (fd, data, ps) != (ssize_t) ps)
{
puts ("short write");
return 1;