From 3fd019739fb026e2af338d964a34fe92a91a21cf Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 27 Jul 2017 17:29:24 -0500 Subject: psxmmap01/test_helper.c: Use correct printf format for size_t --- testsuites/psxtests/psxmmap01/test_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsuites/psxtests/psxmmap01/test_helper.c b/testsuites/psxtests/psxmmap01/test_helper.c index cab8e9138b..cf68e8f6cd 100644 --- a/testsuites/psxtests/psxmmap01/test_helper.c +++ b/testsuites/psxtests/psxmmap01/test_helper.c @@ -24,7 +24,7 @@ void fail_check( { va_list ap; - printf( "%s: %d: ", file, line ); + printf( "%s: %zd: ", file, line ); va_start(ap, fmt); vprintf(fmt, ap); -- cgit v1.2.3