summaryrefslogtreecommitdiff
path: root/io
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2002-09-30 07:47:16 +0000
committerAndreas Jaeger <aj@suse.de>2002-09-30 07:47:16 +0000
commit9a2d7205aa046af3f4caf1b35388e9100e2a25db (patch)
treeb03b171dac305af547caacbab7e81c209b60a480 /io
parent3efdff78b3ca58748dc709d3c6f6d32f7c6f0f05 (diff)
Fix format strings.
Diffstat (limited to 'io')
-rw-r--r--io/tst-getcwd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io/tst-getcwd.c b/io/tst-getcwd.c
index f53f93cf0a..421eb18b5e 100644
--- a/io/tst-getcwd.c
+++ b/io/tst-getcwd.c
@@ -152,7 +152,7 @@ getcwd (NULL, sbs) = \"%s\", getcwd (thepath, sizeof thepath) = \"%s\"\n",
for (i = len + 1; i < sizeof thepath; ++i)
if (thepath[i] != '\xff')
{
- printf ("thepath[%d] != '\xff'\n", i);
+ printf ("thepath[%zd] != '\xff'\n", i);
return 1;
}