diff options
author | Andreas Jaeger <aj@suse.de> | 2002-09-30 07:47:16 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2002-09-30 07:47:16 +0000 |
commit | 9a2d7205aa046af3f4caf1b35388e9100e2a25db (patch) | |
tree | b03b171dac305af547caacbab7e81c209b60a480 /posix/bug-regex11.c | |
parent | 3efdff78b3ca58748dc709d3c6f6d32f7c6f0f05 (diff) | |
download | glibc-9a2d7205aa046af3f4caf1b35388e9100e2a25db.zip glibc-9a2d7205aa046af3f4caf1b35388e9100e2a25db.tar.gz glibc-9a2d7205aa046af3f4caf1b35388e9100e2a25db.tar.bz2 |
Fix format strings.
Diffstat (limited to 'posix/bug-regex11.c')
-rw-r--r-- | posix/bug-regex11.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/bug-regex11.c b/posix/bug-regex11.c index 5c8179d..d6fc415 100644 --- a/posix/bug-regex11.c +++ b/posix/bug-regex11.c @@ -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; |