diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-02-09 17:57:28 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-02-09 17:57:28 +0000 |
commit | 257bdad02163893320cdb0adf9a56fdb5cf7827b (patch) | |
tree | 29928572df9f18111c3a0a38e22c6fbb649d03e9 /libio/tst_wscanf.c | |
parent | 7c5bb945c280c1ac231ba0cabedcc8a80cf77af8 (diff) | |
download | glibc-257bdad02163893320cdb0adf9a56fdb5cf7827b.tar.gz glibc-257bdad02163893320cdb0adf9a56fdb5cf7827b.tar.xz glibc-257bdad02163893320cdb0adf9a56fdb5cf7827b.zip |
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_wscanf.c')
-rw-r--r-- | libio/tst_wscanf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/tst_wscanf.c b/libio/tst_wscanf.c index 97bc518124..df209838c2 100644 --- a/libio/tst_wscanf.c +++ b/libio/tst_wscanf.c @@ -21,7 +21,7 @@ main (int argc, char *argv[]) || c3 != '!' || wc4 != L'!' || d != 42) { printf ("*** FAILED, n = %d, buf1 = \"%s\", wbuf2 = L\"%S\", c3 = '%c', wc4 = L'%C', d = %d\n", - n, buf1, wbuf2, c3, wc4, d); + n, buf1, wbuf2, c3, (wint_t) wc4, d); result = 1; } |