mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-07 06:43:00 +03:00
Update.
* libio/bug-wfflush.c (do_test): Using fseek is not allowed when wide oriented streams are used.
This commit is contained in:
@@ -35,6 +35,13 @@ do_test (void)
|
||||
return 1;
|
||||
}
|
||||
|
||||
fpos_t pos;
|
||||
if (fgetpos (f, &pos) != 0)
|
||||
{
|
||||
printf ("fgetpos: %m\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
#define L_(s) L##s
|
||||
//#define fwscanf fscanf
|
||||
//#define fwprintf fprintf
|
||||
@@ -46,9 +53,9 @@ do_test (void)
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (fseek (f, 0, SEEK_SET) != 0)
|
||||
if (fsetpos (f, &pos) != 0)
|
||||
{
|
||||
printf ("fseek: %m\n");
|
||||
printf ("fsetpos: %m\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user