diff options
Diffstat (limited to 'iconv/iconv_prog.c')
-rw-r--r-- | iconv/iconv_prog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/iconv/iconv_prog.c b/iconv/iconv_prog.c index a42cc5b375..1a1d0d0cf4 100644 --- a/iconv/iconv_prog.c +++ b/iconv/iconv_prog.c @@ -275,7 +275,7 @@ conversions from `%s' and to `%s' are not supported"), do { #ifdef _POSIX_MAPPED_FILES - struct stat st; + struct stat64 st; char *addr; #endif int fd, ret; @@ -300,7 +300,7 @@ conversions from `%s' and to `%s' are not supported"), #ifdef _POSIX_MAPPED_FILES /* We have possibilities for reading the input file. First try to mmap() it since this will provide the fastest solution. */ - if (fstat (fd, &st) == 0 + if (fstat64 (fd, &st) == 0 && ((addr = mmap (NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0)) != MAP_FAILED)) { |