summaryrefslogtreecommitdiff
path: root/libio/tst_swscanf.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-02-09 17:57:28 +0000
committerUlrich Drepper <drepper@redhat.com>2001-02-09 17:57:28 +0000
commit257bdad02163893320cdb0adf9a56fdb5cf7827b (patch)
tree29928572df9f18111c3a0a38e22c6fbb649d03e9 /libio/tst_swscanf.c
parent7c5bb945c280c1ac231ba0cabedcc8a80cf77af8 (diff)
Update.
2001-02-09 Ulrich Drepper <drepper@redhat.com> * libio/tst_wscanf.c (main): Add cast to avoid warning. * libio/tst_swscanf.c (main): Likewise..
Diffstat (limited to 'libio/tst_swscanf.c')
-rw-r--r--libio/tst_swscanf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/tst_swscanf.c b/libio/tst_swscanf.c
index 59e5324c0e..372f0fc7d3 100644
--- a/libio/tst_swscanf.c
+++ b/libio/tst_swscanf.c
@@ -31,7 +31,7 @@ main (int argc, char *argv[])
|| strcmp (buf3, "three") != 0 || c4 != '!' || wc5 != L'!')
{
printf ("*** FAILED, n = %Zu, buf1 = \"%s\", wbuf2 = L\"%S\", buf3 = \"%s\", c4 = '%c', wc5 = L'%C'\n",
- n, buf1, wbuf2, buf3, c4, wc5);
+ n, buf1, wbuf2, buf3, c4, (wint_t) wc5);
result = 1;
}