From: roland Date: Tue, 19 Mar 1996 19:52:14 +0000 (+0000) Subject: Sat Feb 17 11:29:29 1996 David Mosberger-Tang X-Git-Tag: libc-960320~60 X-Git-Url: http://git.csclub.uwaterloo.ca/?p=kopensolaris-gnu%2Fglibc.git;a=commitdiff_plain;h=44a7212a2d4b6ef50110d5426724dd0e6c3aa84d Sat Feb 17 11:29:29 1996 David Mosberger-Tang * stdlib/testmb.c (main): fix format to use %lx instead of %x. --- diff --git a/stdlib/testmb.c b/stdlib/testmb.c index c840ce195b..a70fe08bee 100644 --- a/stdlib/testmb.c +++ b/stdlib/testmb.c @@ -53,7 +53,7 @@ main () } else { - printf ("wide value: 0x%04x\n", (unsigned long) wc); + printf ("wide value: 0x%04lx\n", (unsigned long) wc); mbc[0] = '\0'; if ((r = wctomb (mbc, wc)) <= 0) {