From b6d8a999cd490665c795ad316a49cc22bdde2fa4 Mon Sep 17 00:00:00 2001 From: Stefan Liebler Date: Wed, 6 Feb 2019 12:29:02 +0100 Subject: Fix wide char format specifier in libio/tst-bz24153.c. On big endian systems the test fails with: tst-bz24153.c:88: numeric comparison failure left: 1660944385 (0x63000001); from: ch right: 99 (0x63); from: L'c' tst-bz24153.c:90: numeric comparison failure left: 1677721601 (0x64000001); from: ch right: 100 (0x64); from: L'd' error: 2 test failures One 'char' ("%c") is stored to the 'wchar_t *': ch = 0x00000001 | 0x63000000 This patch is using "%lc" as format specifier to read a wchar_t. ChangeLog: * libio/tst-bz24153.c (wide): Use wide char format specifier. --- ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 3de4ca1f10..605346afcd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2019-02-06 Stefan Liebler + + * libio/tst-bz24153.c (wide): Use wide char format specifier. + 2019-02-06 Stefan Liebler * sysdeps/s390/wmemcmp-vx.S: Add strong alias to -- cgit v1.2.3