aboutsummaryrefslogtreecommitdiff
path: root/posix/bug-regex12.c
diff options
context:
space:
mode:
Diffstat (limited to 'posix/bug-regex12.c')
-rw-r--r--posix/bug-regex12.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/bug-regex12.c b/posix/bug-regex12.c
index 2464991..d5b5ef1 100644
--- a/posix/bug-regex12.c
+++ b/posix/bug-regex12.c
@@ -52,7 +52,7 @@ main (void)
{
char buf[500];
regerror (n, &re, buf, sizeof (buf));
- printf ("regcomp %d failed: %s\n", i, buf);
+ printf ("regcomp %zd failed: %s\n", i, buf);
ret = 1;
continue;
}
@@ -60,7 +60,7 @@ main (void)
if (! regexec (&re, tests[i].string, tests[i].nmatch,
tests[i].nmatch ? rm : NULL, 0))
{
- printf ("regexec %d incorrectly matched\n", i);
+ printf ("regexec %zd incorrectly matched\n", i);
ret = 1;
}