1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

Fix format strings.

This commit is contained in:
Andreas Jaeger
2002-09-30 07:47:16 +00:00
parent 3efdff78b3
commit 9a2d7205aa
9 changed files with 16 additions and 16 deletions

View File

@ -58,14 +58,14 @@ 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;
}
if (regexec (&re, tests[i].string, tests[i].nmatch, rm, 0))
{
printf ("regexec %d failed\n", i);
printf ("regexec %zd failed\n", i);
ret = 1;
regfree (&re);
continue;