diff options
Diffstat (limited to 'elf/sln.c')
-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 1a7d24e6dc..c6601fdbfc 100644 --- a/elf/sln.c +++ b/elf/sln.c @@ -167,11 +167,11 @@ makesymlink (src, dest) 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)) { |