diff options
Diffstat (limited to 'elf')
-rw-r--r-- | elf/sln.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/sln.c b/elf/sln.c index 9d57be2df5..f52cb9f44a 100644 --- a/elf/sln.c +++ b/elf/sln.c @@ -164,11 +164,11 @@ makesymlinks (const char *file) static int makesymlink (const char *src, const char *dest) { - struct stat stats; + struct stat64 stats; const char *error; /* Destination must not be a directory. */ - if (lstat (dest, &stats) == 0) + if (lstat64 (dest, &stats) == 0) { if (S_ISDIR (stats.st_mode)) { |