From 7bde91bd5fd20e2c0c91193728c793e0675bdc03 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 10 Jan 2019 09:05:49 +0100 Subject: Fix format warnings due to ino_t changes --- testsuites/psxtests/psxreaddir/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testsuites/psxtests/psxreaddir/test.c') diff --git a/testsuites/psxtests/psxreaddir/test.c b/testsuites/psxtests/psxreaddir/test.c index e32bac4921..25d7844bfc 100644 --- a/testsuites/psxtests/psxreaddir/test.c +++ b/testsuites/psxtests/psxreaddir/test.c @@ -80,7 +80,7 @@ void printdir( DIR *directory ) d = readdir(directory); while (d) { - printf( "%-20s %8ld %8" PRIdoff_t " %6d 0x%04x\n", + printf( "%-20s %8" PRIuino_t " %8" PRIdoff_t " %6d 0x%04x\n", d->d_name, d->d_ino, d->d_off, d->d_reclen, d->d_type ); d = readdir(directory); -- cgit v1.2.3