diff options
Diffstat (limited to 'elf')
-rw-r--r-- | elf/sln.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)) { |