aboutsummaryrefslogtreecommitdiff
path: root/posix/tst-mmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'posix/tst-mmap.c')
-rw-r--r--posix/tst-mmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/tst-mmap.c b/posix/tst-mmap.c
index e4db364..355a784 100644
--- a/posix/tst-mmap.c
+++ b/posix/tst-mmap.c
@@ -167,7 +167,7 @@ main (void)
for (c = ps; c < ps + 1000; ++c)
if (ptr[c - ps] != '0' + (c % 10))
{
- printf ("wrong data mapped at offset %d\n", c);
+ printf ("wrong data mapped at offset %zd\n", c);
result = 1;
}
}
@@ -187,7 +187,7 @@ main (void)
for (c = ps; c < ps + 1000; ++c)
if (ptr[c - ps] != '0' + (c % 10))
{
- printf ("wrong data mapped at offset %d\n", c);
+ printf ("wrong data mapped at offset %zd\n", c);
result = 1;
}
}