From d22ce01becae90db0c65c82fd2e1aa7898df7ce6 Mon Sep 17 00:00:00 2001 From: Stefan Liebler Date: Wed, 17 Dec 2014 16:43:34 +0100 Subject: Get rid of format warning in bug-vfprintf-nargs.c. --- stdio-common/bug-vfprintf-nargs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'stdio-common') diff --git a/stdio-common/bug-vfprintf-nargs.c b/stdio-common/bug-vfprintf-nargs.c index c7e7f0b8b4..75349671a1 100644 --- a/stdio-common/bug-vfprintf-nargs.c +++ b/stdio-common/bug-vfprintf-nargs.c @@ -65,7 +65,8 @@ do_test (void) test this on 32-bit systems. */ if (sizeof (long int) == 4) { - sprintf (buf, "%%1$d %%%" PRIdPTR "$d", UINT32_MAX / sizeof (int)); + sprintf (buf, "%%1$d %%%" PRIdPTR "$d", + (intptr_t) (UINT32_MAX / sizeof (int))); if (format_failed (buf, "1 %$d") != 0) rc = 1; } -- cgit v1.2.1