diff options
author | Joseph Myers <joseph@codesourcery.com> | 2014-12-11 13:15:08 -0800 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2014-12-11 13:15:08 -0800 |
commit | 47d51f4f0739a264579d8ea27cd58346b6402e1f (patch) | |
tree | 98365acc577665b713d9a2d605d1479c10282167 /localedata/tst-mbswcs5.c | |
parent | e9813cfb3d71675c87a16318b20642a366aff74c (diff) | |
download | glibc-47d51f4f0739a264579d8ea27cd58346b6402e1f.tar.gz glibc-47d51f4f0739a264579d8ea27cd58346b6402e1f.tar.xz glibc-47d51f4f0739a264579d8ea27cd58346b6402e1f.zip |
Clean up localedata tests printf formats, don't use -Wno-format.
Diffstat (limited to 'localedata/tst-mbswcs5.c')
-rw-r--r-- | localedata/tst-mbswcs5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/localedata/tst-mbswcs5.c b/localedata/tst-mbswcs5.c index c44f12a49d..1ff56f3042 100644 --- a/localedata/tst-mbswcs5.c +++ b/localedata/tst-mbswcs5.c @@ -25,12 +25,12 @@ #define show(expr, nexp, bufexp) \ { \ size_t res = expr; \ - printf (#expr " -> %Zd", res); \ + printf (#expr " -> %zu", res); \ dst += res; \ printf (", dst = buf+%td", dst - (char *) buf); \ if (res != nexp || dst != (char *) (bufexp)) \ { \ - printf (", expected %Zd and buf+%td", nexp, \ + printf (", expected %zu and buf+%td", (size_t) nexp, \ (bufexp) - (unsigned char *) buf); \ result = 1; \ } \ |