From 47d51f4f0739a264579d8ea27cd58346b6402e1f Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Thu, 11 Dec 2014 13:15:08 -0800 Subject: Clean up localedata tests printf formats, don't use -Wno-format. --- localedata/tst-trans.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'localedata/tst-trans.c') diff --git a/localedata/tst-trans.c b/localedata/tst-trans.c index 0b0be83c78..616c896809 100644 --- a/localedata/tst-trans.c +++ b/localedata/tst-trans.c @@ -44,12 +44,12 @@ do_test (void) } wch = towctrans (L'A', t); - printf ("towctrans (L'A', t) = %c\n", wch); + printf ("towctrans (L'A', t) = %lc\n", wch); if (wch != L'B') errors = 1; wch = towctrans (L'B', t); - printf ("towctrans (L'B', t) = %c\n", wch); + printf ("towctrans (L'B', t) = %lc\n", wch); if (wch != L'C') errors = 1; -- cgit 1.4.1