diff options
Diffstat (limited to 'elf/dl-misc.c')
-rw-r--r-- | elf/dl-misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/dl-misc.c b/elf/dl-misc.c index 5261007..4a811a0 100644 --- a/elf/dl-misc.c +++ b/elf/dl-misc.c @@ -45,11 +45,11 @@ void * _dl_sysdep_read_whole_file (const char *file, size_t *sizep, int prot) { void *result; - struct elf_stat st; + struct stat64 st; int fd = __open (file, O_RDONLY); if (fd < 0) return NULL; - if (elf_fxstat (_STAT_VER, fd, &st) < 0 + if (__fxstat64 (_STAT_VER, fd, &st) < 0 /* No need to map the file if it is empty. */ || st.st_size == 0) result = NULL; |