mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 12:30:06 +00:00
* libio/bug-ftell.c (do_test): Add a cast.
This commit is contained in:
parent
c1e781ae7c
commit
47a4117530
@ -1,3 +1,7 @@
|
|||||||
|
2003-11-01 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
|
* libio/bug-ftell.c (do_test): Add a cast.
|
||||||
|
|
||||||
2003-09-26 Daniel Jacobowitz <drow@mvista.com>
|
2003-09-26 Daniel Jacobowitz <drow@mvista.com>
|
||||||
|
|
||||||
* Makerules (shlib.lds): Make sure that ld doesn't try to link
|
* Makerules (shlib.lds): Make sure that ld doesn't try to link
|
||||||
|
@ -35,7 +35,8 @@ do_test (void)
|
|||||||
wint_t wc = fgetwc (fp);
|
wint_t wc = fgetwc (fp);
|
||||||
if (wc != (wint_t) *cp)
|
if (wc != (wint_t) *cp)
|
||||||
{
|
{
|
||||||
printf ("fgetwc failed: got L'%lc', expected L'%lc'\n", wc, *cp);
|
printf ("fgetwc failed: got L'%lc', expected L'%lc'\n",
|
||||||
|
wc, (wint_t) *cp);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
off_t o = ftello (fp);
|
off_t o = ftello (fp);
|
||||||
|
Loading…
Reference in New Issue
Block a user