diff options
Diffstat (limited to 'libio/wfiledoalloc.c')
-rw-r--r-- | libio/wfiledoalloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/wfiledoalloc.c b/libio/wfiledoalloc.c index c60d875cbb..c3f4ba8cd4 100644 --- a/libio/wfiledoalloc.c +++ b/libio/wfiledoalloc.c @@ -60,9 +60,9 @@ /* Allocate a file buffer, or switch to unbuffered I/O. */ int -_IO_wfile_doallocate (_IO_FILE *fp) +_IO_wfile_doallocate (FILE *fp) { - _IO_size_t size; + size_t size; wchar_t *p; /* Allocate room for the external buffer. */ |