diff options
author | 2002-09-30 07:47:16 +0000 | |
---|---|---|
committer | 2002-09-30 07:47:16 +0000 | |
commit | 9a2d7205aa046af3f4caf1b35388e9100e2a25db (patch) | |
tree | b03b171dac305af547caacbab7e81c209b60a480 /stdio-common | |
parent | * sysdeps/unix/sysv/linux/x86_64/sysdep.h (diff) | |
download | glibc-9a2d7205aa046af3f4caf1b35388e9100e2a25db.tar.xz glibc-9a2d7205aa046af3f4caf1b35388e9100e2a25db.zip |
Fix format strings.
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/tst-rndseek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/tst-rndseek.c b/stdio-common/tst-rndseek.c index 61b919c002..eafe0b4278 100644 --- a/stdio-common/tst-rndseek.c +++ b/stdio-common/tst-rndseek.c @@ -117,7 +117,7 @@ do_test (void) if (ch1 != ch2) { - printf ("%d: '%c' vs '%c'\n", i, ch1, ch2); + printf ("%zd: '%c' vs '%c'\n", i, ch1, ch2); return 1; } } |