diff options
author | Jakub Jelinek <jakub@redhat.com> | 2005-06-20 15:59:03 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2005-06-20 15:59:03 +0000 |
commit | 27424b29289a49958e62450203f33a57dc1465e2 (patch) | |
tree | 7045409bd7d383127ecac0f78325a2a035b3f754 /posix | |
parent | 841d8c3466e6472c9cd16ee5bff701ba0380998a (diff) |
Updated to fedora-glibc-20050620T1530
Diffstat (limited to 'posix')
-rw-r--r-- | posix/tst-mmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/tst-mmap.c b/posix/tst-mmap.c index 355a784124..c03acf5e16 100644 --- a/posix/tst-mmap.c +++ b/posix/tst-mmap.c @@ -30,7 +30,7 @@ main (void) for (c = 0; c < sizeof (buf); ++c) buf[c] = '0' + (c % 10); - for (c = 0; c < 20; ++c) + for (c = 0; c < (ps * 4) / sizeof (buf); ++c) if (fwrite (buf, 1, sizeof (buf), fp) != sizeof (buf)) { printf ("`fwrite' failed: %m\n"); @@ -40,7 +40,7 @@ main (void) assert (ps + 1000 < c * sizeof (buf)); /* First try something which is not allowed: map at an offset which is - not module the pagesize. */ + not modulo the pagesize. */ ptr = mmap (NULL, 1000, PROT_READ, MAP_SHARED, fd, ps - 1); if (ptr != MAP_FAILED) { |