From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id AED823838016; Thu, 31 Mar 2022 12:13:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org AED823838016 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Adhemerval Zanella To: glibc-cvs@sourceware.org Subject: [glibc] stdlib: Fix tst-rand48.c printf types X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/master X-Git-Oldrev: bc02f1fa2fb302eb8a486794c6b7e4811229b81e X-Git-Newrev: 3ff447f7dfcb79740e30f6247c1d4d5344244a35 Message-Id: <20220331121357.AED823838016@sourceware.org> Date: Thu, 31 Mar 2022 12:13:57 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Mar 2022 12:13:57 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=3ff447f7dfcb79740e30f6247c1d4d5344244a35 commit 3ff447f7dfcb79740e30f6247c1d4d5344244a35 Author: Adhemerval Zanella Date: Thu Mar 24 15:22:55 2022 -0300 stdlib: Fix tst-rand48.c printf types Checked on x86_64-linux-gnu and i686-linux-gnu. Diff: --- stdlib/tst-rand48.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stdlib/tst-rand48.c b/stdlib/tst-rand48.c index 973c62e1eb..ec8195c6d5 100644 --- a/stdlib/tst-rand48.c +++ b/stdlib/tst-rand48.c @@ -26,7 +26,7 @@ do_test (void) if (xsp[0] != 0x330e || xsp[1] != 0x5432 || xsp[2] != 0x9876) { puts ("srand48(0x98765432) didn't set correct value"); - printf (" expected: { %04hx, %04hx, %04hx }\n", 0x330e, 0x5432, 0x9876); + printf (" expected: { %04x, %04x, %04x }\n", 0x330e, 0x5432, 0x9876); printf (" seen: { %04hx, %04hx, %04hx }\n", xsp[0], xsp[1], xsp[2]); result = 1; } @@ -76,7 +76,7 @@ do_test (void) if (xsp[0] != 0x62f2 || xsp[1] != 0xf474 || xsp[2] != 0x9e88) { puts ("seed48() did not install the values correctly"); - printf (" expected: { %04hx, %04hx, %04hx }\n", 0x62f2, 0xf474, 0x9e88); + printf (" expected: { %04x, %04x, %04x }\n", 0x62f2, 0xf474, 0x9e88); printf (" seen: { %04hx, %04hx, %04hx }\n", xsp[0], xsp[1], xsp[2]); result = 1; } @@ -215,7 +215,7 @@ do_test (void) if (xsp[0] != 0x0637 || xsp[1] != 0x7acd || xsp[2] != 0xdbec) { puts ("seed48() did not install the values correctly"); - printf (" expected: { %04hx, %04hx, %04hx }\n", 0x0637, 0x7acd, 0xdbec); + printf (" expected: { %04x, %04x, %04x }\n", 0x0637, 0x7acd, 0xdbec); printf (" seen: { %04hx, %04hx, %04hx }\n", xsp[0], xsp[1], xsp[2]); result = 1; }